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)
276CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetDouble,
System\Windows\Forms\TableLayoutPanelTests.cs (7)
237control.CellBorderStyle = value; 244control.CellBorderStyle = value; 273control.CellBorderStyle = value; 283control.CellBorderStyle = value; 298Assert.Throws<InvalidEnumArgumentException>("value", () => control.CellBorderStyle = value); 1438CellBorderStyle = cellBorderStyle, 1478CellBorderStyle = 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)
44Assert.Equal(TableLayoutPanelCellBorderStyle.Inset, control.CellBorderStyle);
System.Windows.Forms.Tests (5)
System\Windows\Forms\TableLayoutPanelTests.cs (5)
46Assert.Equal(TableLayoutPanelCellBorderStyle.None, control.CellBorderStyle); 238Assert.Equal(value, control.CellBorderStyle); 245Assert.Equal(value, control.CellBorderStyle); 274Assert.Equal(value, control.CellBorderStyle); 284Assert.Equal(value, control.CellBorderStyle);