DataGridViewEditingControlShowingEventArgs.CellStyle 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定編輯的儲存格之儲存格樣式。
public:
property System::Windows::Forms::DataGridViewCellStyle ^ CellStyle { System::Windows::Forms::DataGridViewCellStyle ^ get(); void set(System::Windows::Forms::DataGridViewCellStyle ^ value); };
public System.Windows.Forms.DataGridViewCellStyle CellStyle { get; set; }
member this.CellStyle : System.Windows.Forms.DataGridViewCellStyle with get, set
Public Property CellStyle As DataGridViewCellStyle
屬性值
DataGridViewCellStyle,表示正在編輯的儲存格之樣式。
例外狀況
設定這個屬性時所指定的值是 null
。
範例
下列程式碼範例說明如何處理這個事件,以變更 BackColor 目前儲存格的 屬性。 若要執行此範例,請將程式碼貼到包含 DataGridView 具名 dataGridView1
的表單中,並確定 EditingControlShowing 事件與事件處理常式相關聯。
private void dataGridView1_EditingControlShowing(object sender,
DataGridViewEditingControlShowingEventArgs e)
{
e.CellStyle.BackColor = Color.Aquamarine;
}
Private Sub dataGridView1_EditingControlShowing(ByVal sender As Object, _
ByVal e As DataGridViewEditingControlShowingEventArgs) _
Handles dataGridView1.EditingControlShowing
e.CellStyle.BackColor = Color.Aquamarine
End Sub
備註
若要自訂控制項的顯示特性,請設定 屬性所 CellStyle 傳回之物件的屬性,而不是設定 屬性所 Control 傳回之控制項的屬性。