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 。