14 references to Shortcuts
System.Windows.Forms (14)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (4)
719if (toolStrip.Shortcuts.ContainsKey(shortcut)) 777&& activeControlInChain.ContextMenuStrip.Shortcuts.TryGetValue(shortcut, out ToolStripMenuItem? item) 802|| !toolStrip.Shortcuts.ContainsKey(shortcut)) 869if (toolStrip.Shortcuts.TryGetValue(shortcut, out ToolStripMenuItem? item)
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (10)
381owner.Shortcuts.Remove(originalShortcut); 384if (owner.Shortcuts.ContainsKey(value)) 387owner.Shortcuts[value] = this; 391owner.Shortcuts.Add(value, this); 570if (shortcut != Keys.None && _lastOwner.Shortcuts.ContainsKey(shortcut)) 572_lastOwner.Shortcuts.Remove(shortcut); 923_lastOwner?.Shortcuts.Remove(shortcut); 927if (Owner.Shortcuts.ContainsKey(shortcut)) 930Owner.Shortcuts[shortcut] = this; 934Owner.Shortcuts.Add(shortcut, this);