DataGridViewCell.KeyUpUnsharesRow(KeyEventArgs, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示当焦点位于单元格上,同时用户释放某个键时,是否对父行取消共享。
protected:
virtual bool KeyUpUnsharesRow(System::Windows::Forms::KeyEventArgs ^ e, int rowIndex);
protected virtual bool KeyUpUnsharesRow (System.Windows.Forms.KeyEventArgs e, int rowIndex);
abstract member KeyUpUnsharesRow : System.Windows.Forms.KeyEventArgs * int -> bool
override this.KeyUpUnsharesRow : System.Windows.Forms.KeyEventArgs * int -> bool
Protected Overridable Function KeyUpUnsharesRow (e As KeyEventArgs, rowIndex As Integer) As Boolean
参数
包含事件数据的 KeyEventArgs。
- rowIndex
- Int32
该单元格的父行索引。
返回
如果不共享该行,则为 true
;否则为 false
。
DataGridViewCell 基类总是返回 false
。
注解
方法 KeyUpUnsharesRow 在 方法之前 OnKeyUp 调用。 如果具有相同参数的 对 OnKeyUpKeyEventArgs 的调用具有取消共享包含单元格的行的效果,则它必须返回 true
。 否则,它应返回 false
。
有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法。