Profile
Achievement
Currysuechtig's Recent Snippets
- All /
« Prev 1 Next »
Easily create Windows Forms Shortcuts with this class.
For example: A shortcut to catch pasting via Ctrl + V.
Shortcut sc = new Shortcut(this, new Action(() => MessageBox.Show("Data pasted!")));
sc.Keys.Add(Keys.ControlKey);
sc.Keys.Add(Keys.V)...
0
879
posted 13 years ago by Currysuechtig