4 overrides of KeyboardShortcut
System.Windows.Forms (4)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (1)
291
public override string?
KeyboardShortcut
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildDropDownButtonUiaProvider.cs (1)
90
public override string?
KeyboardShortcut
=> GetKeyboardShortcutInternal((VARIANT)GetChildId()).ToNullableStringAndFree();
System\Windows\Forms\Controls\TabControl\TabPage.TabAccessibleObject.cs (1)
114
public override string?
KeyboardShortcut
=> GetKeyboardShortcutInternal((VARIANT)GetChildId()).ToNullableStringAndFree();
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (1)
70
public override string
KeyboardShortcut
7 references to KeyboardShortcut
System.Windows.Forms (7)
System\Windows\Forms\Accessibility\AccessibleObject.cs (5)
213
/// Determines if <see cref="GetKeyboardShortcutInternal(VARIANT)"/> can be called without calling <see cref="
KeyboardShortcut
"/>
614
UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => (VARIANT)(
KeyboardShortcut
?? string.Empty),
1267
*pszKeyboardShortcut = new(
KeyboardShortcut
);
2169
: new(
KeyboardShortcut
);
2179
: new(child.
KeyboardShortcut
);
System\Windows\Forms\Controls\DataGridView\DataGridView.DataGridViewEditingPanelAccessibleObject.cs (1)
77
UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => this.TryGetOwnerAs(out Panel? owner) && owner.AccessibilityObject.
KeyboardShortcut
is { } shortcut
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownEdit.UpDownEditAccessibleObject.cs (1)
38
public override string? KeyboardShortcut => _parent.AccessibilityObject.
KeyboardShortcut
;