6 writes to MenuAutoExpand
System.Windows.Forms (6)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (3)
128MenuAutoExpand = false; 3325MenuAutoExpand = true; 3975MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1095MenuAutoExpand = true; 1262OwnerToolStrip.MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2476ParentInternal.MenuAutoExpand = autoExpand;
5 references to MenuAutoExpand
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
912toplevelOwnerToolStrip?.MenuAutoExpand = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
2464bool autoExpand = ParentInternal.MenuAutoExpand;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (3)
749if (!Enabled || ParentInternal is null || !ParentInternal.MenuAutoExpand || !HasDropDownItems) 823ParentInternal?.MenuAutoExpand = true; 900if (ParentInternal is not null && ParentInternal.MenuAutoExpand && Selected)