Esempio n. 1
0
 public ShortcutEventArgs(Control focused, RadShortcut shortcut)
 {
     this.focusedControl = focused;
     this.shortcut       = shortcut;
 }
Esempio n. 2
0
 public PartialShortcutEventArgs(Control focused, RadShortcut shortcut, Keys[] collectedKeys)
     : base(focused, shortcut)
 {
     this.collectedKeys = collectedKeys;
 }