22 Ocak 2018 Pazartesi

C# CTRL S Butonu ile Kaydetmek

Aşağıdaki kodu Form'un Load eventine yapıştırın.

this.KeyPreview = true;

Aşağıdaki kod bloğunu Form KeyDown Eventine yapıştırınız.

            if (e.Control && e.KeyCode == Keys.S)
            {
                button4_Click(null, null); // Kaydet butonunun buton id'sini yazın
            }

Hiç yorum yok: