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