2 overrides of KeyboardActive
System.Windows.Forms (2)
winforms\Managed\System\WinForms\MenuStrip.cs (1)
41internal override bool KeyboardActive {
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
635internal override bool KeyboardActive {
8 writes to KeyboardActive
System.Windows.Forms (8)
winforms\Managed\System\WinForms\MenuStrip.cs (1)
45base.KeyboardActive = value;
winforms\Managed\System\WinForms\ToolStrip.cs (3)
1932KeyboardActive = true; 2673KeyboardActive = false; 4102KeyboardActive = false;
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
645base.KeyboardActive = value; 650ownerToolStrip.KeyboardActive = value;
winforms\Managed\System\WinForms\ToolStripManager.cs (2)
298toolStrip.KeyboardActive = false; 1132toolStrip.KeyboardActive = true;
5 references to KeyboardActive
System.Windows.Forms (5)
winforms\Managed\System\WinForms\MenuStrip.cs (2)
42get { return base.KeyboardActive; } 44if (base.KeyboardActive != value) {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4101if (KeyboardActive && !Focused && !ContainsFocus) {
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
640return ownerToolStrip.KeyboardActive; 642return base.KeyboardActive;