5 writes to BorderStyle
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
158BorderStyle = value 164control.BorderStyle = value; 184control.BorderStyle = value; 192control.BorderStyle = value; 205Assert.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)
35Assert.Equal(BorderStyle.None, control.BorderStyle);
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
37Assert.Equal(BorderStyle.None, control.BorderStyle); 160Assert.Equal(value, control.BorderStyle); 165Assert.Equal(value, control.BorderStyle); 185Assert.Equal(value, control.BorderStyle); 193Assert.Equal(value, control.BorderStyle);