DataGridViewCellStateChangedEventArgs 类

定义

CellStateChanged 事件提供数据。

public ref class DataGridViewCellStateChangedEventArgs : EventArgs
public class DataGridViewCellStateChangedEventArgs : EventArgs
type DataGridViewCellStateChangedEventArgs = class
    inherit EventArgs
Public Class DataGridViewCellStateChangedEventArgs
Inherits EventArgs
继承
DataGridViewCellStateChangedEventArgs

示例

下面的代码示例演示了此类型的用法。

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

注解

Cell使用 属性确定更改了哪个单元格。 StateChanged使用 属性确定哪个单元格状态已更改。

有关如何处理事件的详细信息,请参阅 处理和引发事件

构造函数

DataGridViewCellStateChangedEventArgs(DataGridViewCell, DataGridViewElementStates)

初始化 DataGridViewCellStateChangedEventArgs 类的新实例。

属性

Cell

获取更改了状态的 DataGridViewCell

StateChanged

获取已更改的单元格状态。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅