DataGridViewCellStateChangedEventArgs.Cell 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取更改了状态的 DataGridViewCell。
public:
property System::Windows::Forms::DataGridViewCell ^ Cell { System::Windows::Forms::DataGridViewCell ^ get(); };
public System.Windows.Forms.DataGridViewCell Cell { get; }
member this.Cell : System.Windows.Forms.DataGridViewCell
Public ReadOnly Property Cell As DataGridViewCell
属性值
更改了状态的 DataGridViewCell。
示例
以下代码示例演示了此类型的用法。
private void dataGridView1_CellStateChanged(object sender,
DataGridViewCellStateChangedEventArgs e)
{
DataGridViewElementStates state = e.StateChanged;
string msg = String.Format("Row {0}, Column {1}, {2}",
e.Cell.RowIndex, e.Cell.ColumnIndex, e.StateChanged);
MessageBox.Show(msg, "Cell State Changed");
}
Private Sub dataGridView1_CellStateChanged(ByVal sender As Object, _
ByVal e As DataGridViewCellStateChangedEventArgs) _
Handles dataGridView1.CellStateChanged
Dim state As DataGridViewElementStates = e.StateChanged
Dim msg As String = String.Format( _
"Row {0}, Column {1}, {2}", _
e.Cell.RowIndex, e.Cell.ColumnIndex, e.StateChanged)
MessageBox.Show(msg, "Cell State Changed")
End Sub