How to work with Shortcut & Keyboard
C#
4
Posts
2
Posters
0
Views
1
Watching
-
How to work with Shortcut & Keyboard For Example I want Manage Keys like "Ctrl+F" for Search How to do it? Thanks in advance
Hello Friends
private void frmFormName_KeyDown(object sender, KeyEventArgs e) { if (e.Control && e.KeyCode == Keys.F) { MessageBox.Show("Conbination key CTRL+F is pressed"); } }
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post.
-
private void frmFormName_KeyDown(object sender, KeyEventArgs e) { if (e.Control && e.KeyCode == Keys.F) { MessageBox.Show("Conbination key CTRL+F is pressed"); } }
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post.