8 writes to MenuAutoExpand
System.Windows.Forms (8)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (3)
129MenuAutoExpand = false; 3325MenuAutoExpand = true; 3975MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (3)
914toplevelOwnerToolStrip.MenuAutoExpand = false; 1098MenuAutoExpand = true; 1265OwnerToolStrip.MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2474ParentInternal.MenuAutoExpand = autoExpand;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
825ParentInternal.MenuAutoExpand = true;
3 references to MenuAutoExpand
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2462bool autoExpand = ParentInternal.MenuAutoExpand;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (2)
749if (!Enabled || ParentInternal is null || !ParentInternal.MenuAutoExpand || !HasDropDownItems) 903if (ParentInternal is not null && ParentInternal.MenuAutoExpand && Selected)