9 references to DataGridViewCellStyle
System.Windows.Forms (4)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
1980
DataGridViewCellStyle defaultCellStyleTmp =
new
(_defaultCellStyle)
System\Windows\Forms\Controls\DataGridView\DataGridViewBand.cs (1)
735
dataGridViewBand.DefaultCellStyle = new
DataGridViewCellStyle
(DefaultCellStyle);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
911
dataGridViewCell.Style = new
DataGridViewCellStyle
(Style);
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (1)
444
public virtual DataGridViewCellStyle Clone() =>
new
(this);
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
76
_cellStyle = new
DataGridViewCellStyle
(value);
91
DataGridViewCellStyle cellStyleTmp =
new
(_cellStyle!);
System.Windows.Forms.Tests (3)
System\Windows\Forms\DataGridViewCellStyleTests.cs (3)
58
DataGridViewCellStyle style =
new
(source);
83
DataGridViewCellStyle style =
new
(source);
107
Assert.Throws<ArgumentNullException>("dataGridViewCellStyle", () => new
DataGridViewCellStyle
(null));