1 write to RightToolStripPanelVisible
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
75((ToolStripContainer)Component).RightToolStripPanelVisible = value;
7 references to RightToolStripPanelVisible
System.Windows.Forms.Design (3)
System\ComponentModel\Design\ToolStripContainerActionList.cs (1)
283get => (bool)(GetProperty(_toolStripContainer, nameof(ToolStripContainer.RightToolStripPanelVisible)) ?? false);
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (2)
66/// Shadow the <see cref="ToolStripContainer.RightToolStripPanelVisible"/> property at design-time 401RightToolStripPanelVisible = _toolStripContainer.RightToolStripPanelVisible;
System.Windows.Forms.Design.Tests (4)
System\Windows\Forms\Design\ToolStripContainerActionListTests.cs (3)
140rightVisible.Should().Be(_toolStripContainer.RightToolStripPanelVisible); 146bool newValue = !_toolStripContainer.RightToolStripPanelVisible; 148_toolStripContainer.RightToolStripPanelVisible.Should().Be(newValue);
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
97AssertShadowProperties("RightToolStripPanelVisible", _toolStripContainer.RightToolStripPanelVisible);