9 writes to CellBorderStyle
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
60CellBorderStyle = TableLayoutPanelCellBorderStyle.Inset;
System.Windows.Forms.Tests (8)
SerializableTypesTests.cs (1)
274CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetDouble,
System\Windows\Forms\TableLayoutPanelTests.cs (7)
235control.CellBorderStyle = value; 242control.CellBorderStyle = value; 271control.CellBorderStyle = value; 281control.CellBorderStyle = value; 296Assert.Throws<InvalidEnumArgumentException>("value", () => control.CellBorderStyle = value); 1436CellBorderStyle = cellBorderStyle, 1476CellBorderStyle = cellBorderStyle,
9 references to CellBorderStyle
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
91Debug.Assert(CellBorderStyle == value, "CellBorderStyle should be the same as we set it"); 340TableLayoutPanelCellBorderStyle cellBorderStyle = CellBorderStyle;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
840if (Table.CellBorderStyle != TableLayoutPanelCellBorderStyle.None)
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
42Assert.Equal(TableLayoutPanelCellBorderStyle.Inset, control.CellBorderStyle);
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
44Assert.Equal(TableLayoutPanelCellBorderStyle.None, control.CellBorderStyle); 236Assert.Equal(value, control.CellBorderStyle); 243Assert.Equal(value, control.CellBorderStyle); 272Assert.Equal(value, control.CellBorderStyle); 282Assert.Equal(value, control.CellBorderStyle);