DataGridViewCheckBoxCell.OnKeyUp(KeyEventArgs, Int32) 方法

定义

在焦点位于单元格上并同时释放字符键时进行调用。

protected:
 override void OnKeyUp(System::Windows::Forms::KeyEventArgs ^ e, int rowIndex);
protected override void OnKeyUp (System.Windows.Forms.KeyEventArgs e, int rowIndex);
override this.OnKeyUp : System.Windows.Forms.KeyEventArgs * int -> unit
Protected Overrides Sub OnKeyUp (e As KeyEventArgs, rowIndex As Integer)

参数

e
KeyEventArgs

包含事件数据的 KeyEventArgs

rowIndex
Int32

当前单元格的行索引,如果该单元格不在任何行中则为 -1。

注解

当由 spaceBAR 键 (等效于Keys.Space值) 激活时,此方法 (UI) 更新单元格的用户界面,并在拥有 DataGridView的 上引发 OnCellClick 事件。

此方法类似于 Control.OnKeyUp 方法。 它在引发事件的相同情况下 Control.KeyUp 调用,但它实际上不会引发事件。

适用于

另请参阅