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)
382owner.Shortcuts.Remove(originalShortcut); 385if (owner.Shortcuts.ContainsKey(value)) 388owner.Shortcuts[value] = this; 392owner.Shortcuts.Add(value, this); 572if (shortcut != Keys.None && _lastOwner.Shortcuts.ContainsKey(shortcut)) 574_lastOwner.Shortcuts.Remove(shortcut); 928_lastOwner?.Shortcuts.Remove(shortcut); 932if (Owner.Shortcuts.ContainsKey(shortcut)) 935Owner.Shortcuts[shortcut] = this; 939Owner.Shortcuts.Add(shortcut, this);