3 overrides of AutoShow
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ContextMenuStripActionList.cs (1)
44public override bool AutoShow
System\Windows\Forms\Design\DesignerActionVerbList.cs (1)
16public override bool AutoShow => false;
System\Windows\Forms\Design\ToolStripActionList.cs (1)
70public override bool AutoShow
7 writes to AutoShow
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
208AutoShow = true
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
382_actionLists[0].AutoShow = true;
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
102AutoShow = true
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerActionListTests.cs (2)
34AutoShow = value 39list.AutoShow = value;
System\Windows\Forms\Design\ContextMenuStripActionListTests.cs (1)
68_actionList.AutoShow = value;
System\Windows\Forms\Design\ToolStripActionListTests.cs (1)
64_actionList.AutoShow = value;
10 references to AutoShow
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionUIService.cs (1)
92if (coll[i]?.AutoShow == true)
System.Windows.Forms.Design.Tests (9)
System\ComponentModel\Design\DesignerActionListTests.cs (3)
25Assert.False(list.AutoShow); 36Assert.Equal(value, list.AutoShow); 40Assert.Equal(value, list.AutoShow);
System\ComponentModel\Design\DesignerActionServiceTests.cs (1)
502Assert.False(actionList.AutoShow);
System\Windows\Forms\Design\ContextMenuStripActionListTests.cs (2)
66_actionList.AutoShow.Should().BeFalse(); 69_actionList.AutoShow.Should().Be(value);
System\Windows\Forms\Design\ToolStripActionListTests.cs (2)
62_actionList.AutoShow.Should().BeFalse(); 65_actionList.AutoShow.Should().Be(value);
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
51toolStripContainerActionList.AutoShow.Should().BeTrue();