5 writes to BorderStyle
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
156BorderStyle = value 162control.BorderStyle = value; 182control.BorderStyle = value; 190control.BorderStyle = value; 203Assert.Throws<InvalidEnumArgumentException>("value", () => control.BorderStyle = value);
7 references to BorderStyle
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
69Debug.Assert(BorderStyle == value, "BorderStyle should be the same as we set it");
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
33Assert.Equal(BorderStyle.None, control.BorderStyle);
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
35Assert.Equal(BorderStyle.None, control.BorderStyle); 158Assert.Equal(value, control.BorderStyle); 163Assert.Equal(value, control.BorderStyle); 183Assert.Equal(value, control.BorderStyle); 191Assert.Equal(value, control.BorderStyle);