Ctrl+S Implemention
-
Hi, i'm Trying to Implement the Ctrl+S (save) Do i need to Monitor the KeyPress Events and check The Last Two Keys Pressed or there is an easer way ( a Buit -In ) :)
Have Fun Never forget it
-
Hi, i'm Trying to Implement the Ctrl+S (save) Do i need to Monitor the KeyPress Events and check The Last Two Keys Pressed or there is an easer way ( a Buit -In ) :)
Have Fun Never forget it
-
Hi, i'm Trying to Implement the Ctrl+S (save) Do i need to Monitor the KeyPress Events and check The Last Two Keys Pressed or there is an easer way ( a Buit -In ) :)
Have Fun Never forget it
If you have a menu on the form, just set the shortcut to Ctrl+S on your Save item.
Deja View - the feeling that you've seen this post before.
-
private void form\_KeyDown(object sender, KeyEventArgs e) { // shortcuts if (e.Control && e.KeyCode == Keys.S) // do action
-
If you have a menu on the form, just set the shortcut to Ctrl+S on your Save item.
Deja View - the feeling that you've seen this post before.
-
If you have a menu on the form, just set the shortcut to Ctrl+S on your Save item.
Deja View - the feeling that you've seen this post before.
-
I What some UserControl each with a Menu the Funny thing is that it always selects the last and perform the Action on it any IDEA :)
Have Fun Never forget it
You can't have the same shortcut assigned to different actions. You need to supply a different shortcut.
Deja View - the feeling that you've seen this post before.
-
You can't have the same shortcut assigned to different actions. You need to supply a different shortcut.
Deja View - the feeling that you've seen this post before.