8 writes to MenuAutoExpand
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ToolStrip.cs (3)
204this.MenuAutoExpand = false; 3496MenuAutoExpand = true; 4090MenuAutoExpand = false;
winforms\Managed\System\WinForms\ToolStripDropDown.cs (3)
1120toplevelOwnerToolStrip.MenuAutoExpand = false; 1319this.MenuAutoExpand = true; 1494OwnerToolStrip.MenuAutoExpand = false;
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
2861ParentInternal.MenuAutoExpand = autoExpand;
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (1)
924ParentInternal.MenuAutoExpand = true;
3 references to MenuAutoExpand
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
2851bool autoExpand = ParentInternal.MenuAutoExpand;
winforms\Managed\System\WinForms\ToolStripMenuItem.cs (2)
854if (Enabled && ParentInternal != null && ParentInternal.MenuAutoExpand && HasDropDownItems) { 1007if (this.ParentInternal != null && this.ParentInternal.MenuAutoExpand && Selected) {