14 references to Shortcuts
System.Windows.Forms (14)
System\Windows\Forms\Controls\ToolStrips\ToolStripManager.cs (4)
715
if (toolStrip.
Shortcuts
.ContainsKey(shortcut))
773
&& activeControlInChain.ContextMenuStrip.
Shortcuts
.TryGetValue(shortcut, out ToolStripMenuItem? item)
798
|| !toolStrip.
Shortcuts
.ContainsKey(shortcut))
865
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);
920
_lastOwner?.
Shortcuts
.Remove(shortcut);
924
if (Owner.
Shortcuts
.ContainsKey(shortcut))
927
Owner.
Shortcuts
[shortcut] = this;
931
Owner.
Shortcuts
.Add(shortcut, this);