1 write to LeftToolStripPanelVisible
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
61((ToolStripContainer)Component).LeftToolStripPanelVisible = value;
7 references to LeftToolStripPanelVisible
System.Windows.Forms.Design (3)
System\ComponentModel\Design\ToolStripContainerActionList.cs (1)
268get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.LeftToolStripPanelVisible)) ?? false);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
52/// Shadow the <see cref="ToolStripContainer.LeftToolStripPanelVisible"/> property at design-time 400LeftToolStripPanelVisible = _toolStripContainer.LeftToolStripPanelVisible;
System.Windows.Forms.Design.Tests (4)
System\Windows\Forms\Design\ToolStripContainerActionListTests.cs (3)
125leftVisible.Should().Be(_toolStripContainer.LeftToolStripPanelVisible); 131bool newValue = !_toolStripContainer.LeftToolStripPanelVisible; 133_toolStripContainer.LeftToolStripPanelVisible.Should().Be(newValue);
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
96AssertShadowProperties("LeftToolStripPanelVisible", _toolStripContainer.LeftToolStripPanelVisible);