25 writes to BorderStyle
Accessibility_Core_App (4)
ContainerControls.Designer.cs (4)
123this.flowLayoutPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; 522this.flowLayoutPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; 574this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; 639this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
PresentationUI (3)
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (1)
116this._flowLayoutPanel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
77this.flowLayoutPanelMain.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
165_listboxMainPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
System.Windows.Forms (2)
System\Windows\Forms\Panels\SplitterPanel.cs (1)
83set => base.BorderStyle = value;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
68base.BorderStyle = value;
System.Windows.Forms.Tests (13)
System\Windows\Forms\PanelTests.cs (8)
147BorderStyle = borderStyle 558BorderStyle = value 564control.BorderStyle = value; 584control.BorderStyle = value; 592control.BorderStyle = value; 605Assert.Throws<InvalidEnumArgumentException>("value", () => control.BorderStyle = value); 1088BorderStyle = borderStyle 1138Panel panel = new() { BorderStyle = BorderStyle.Fixed3D };
System\Windows\Forms\ToolStripContentPanelTests.cs (5)
726BorderStyle = value 732control.BorderStyle = value; 752control.BorderStyle = value; 760control.BorderStyle = value; 773Assert.Throws<InvalidEnumArgumentException>("value", () => control.BorderStyle = value);
WinFormsControlsTest (3)
MultipleControls.Designer.cs (1)
138this.tabPage1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
ScrollableControls.Designer.cs (2)
91flowLayoutPanel1.BorderStyle = BorderStyle.FixedSingle; 159panel1.BorderStyle = BorderStyle.FixedSingle;
19 references to BorderStyle
System.Windows.Forms (4)
System\Windows\Forms\Panels\Panel.cs (2)
14[DefaultProperty(nameof(BorderStyle))] 234ControlPaint.PrintBorder(g, new Rectangle(Point.Empty, Size), BorderStyle, Border3DStyle.Sunken);
System\Windows\Forms\Panels\SplitterPanel.cs (1)
82get => base.BorderStyle;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
65get => base.BorderStyle;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\PanelDesigner.cs (1)
55if (panel.BorderStyle == BorderStyle.None)
System.Windows.Forms.Tests (14)
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
34Assert.Equal(BorderStyle.None, control.BorderStyle);
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
33Assert.Equal(BorderStyle.None, control.BorderStyle);
System\Windows\Forms\PanelTests.cs (5)
34Assert.Equal(BorderStyle.None, control.BorderStyle); 560Assert.Equal(value, control.BorderStyle); 565Assert.Equal(value, control.BorderStyle); 585Assert.Equal(value, control.BorderStyle); 593Assert.Equal(value, control.BorderStyle);
System\Windows\Forms\TabPageTests.cs (2)
38Assert.Equal(BorderStyle.None, control.BorderStyle); 147Assert.Equal(BorderStyle.None, control.BorderStyle);
System\Windows\Forms\ToolStripContentPanelTests.cs (5)
36Assert.Equal(BorderStyle.None, control.BorderStyle); 728Assert.Equal(value, control.BorderStyle); 733Assert.Equal(value, control.BorderStyle); 753Assert.Equal(value, control.BorderStyle); 761Assert.Equal(value, control.BorderStyle);