DataGridViewCell.Style 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定儲存格的樣式。
public:
property System::Windows::Forms::DataGridViewCellStyle ^ Style { System::Windows::Forms::DataGridViewCellStyle ^ get(); void set(System::Windows::Forms::DataGridViewCellStyle ^ value); };
[System.ComponentModel.Browsable(true)]
public System.Windows.Forms.DataGridViewCellStyle Style { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.Style : System.Windows.Forms.DataGridViewCellStyle with get, set
Public Property Style As DataGridViewCellStyle
屬性值
與儲存格關聯的樣式。
- 屬性
範例
下列程式碼範例示範如何使用 Style 屬性來取得儲存格的背景色彩。 這個範例是針對 類別提供的較大程式碼範例的 DataGridViewColumn 一部分。
void CustomizeCellsInThirdColumn()
{
int thirdColumn = 2;
DataGridViewColumn^ column = dataGridView->Columns[ thirdColumn ];
DataGridViewCell^ cell = gcnew DataGridViewTextBoxCell;
cell->Style->BackColor = Color::Wheat;
column->CellTemplate = cell;
}
private void CustomizeCellsInThirdColumn()
{
int thirdColumn = 2;
DataGridViewColumn column =
dataGridView.Columns[thirdColumn];
DataGridViewCell cell = new DataGridViewTextBoxCell();
cell.Style.BackColor = Color.Wheat;
column.CellTemplate = cell;
}
Private Sub CustomizeCellsInThirdColumn()
Dim thirdColumn As Integer = 2
Dim column As DataGridViewColumn = _
dataGridView.Columns(thirdColumn)
Dim cell As DataGridViewCell = _
New DataGridViewTextBoxCell()
cell.Style.BackColor = Color.Wheat
column.CellTemplate = cell
End Sub
備註
DataGridView控制項會使用儲存格屬性所指示的樣式來顯示其儲存格 InheritedStyle ,這會繼承類型 DataGridViewCellStyle 之其他屬性的樣式。 透過 Style 屬性指定的樣式會覆寫透過所有其他儲存格樣式屬性所指定的樣式,但不一定表示參與儲存格外觀的所有樣式。
如需詳細資訊,請參閱DataGridView 控制項中Windows Forms儲存格樣式。