DataGridViewButtonCell.MouseUpUnsharesRow 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示当鼠标指针位于行中某个单元格上并释放鼠标按钮时,该行是否取消共享状态。
protected:
override bool MouseUpUnsharesRow(System::Windows::Forms::DataGridViewCellMouseEventArgs ^ e);
protected override bool MouseUpUnsharesRow (System.Windows.Forms.DataGridViewCellMouseEventArgs e);
override this.MouseUpUnsharesRow : System.Windows.Forms.DataGridViewCellMouseEventArgs -> bool
Protected Overrides Function MouseUpUnsharesRow (e As DataGridViewCellMouseEventArgs) As Boolean
参数
返回
如果释放鼠标左键,则为 true
;否则为 false
。
注解
方法 MouseUpUnsharesRow 在 方法之前 OnMouseUp 调用。 如果 对 OnMouseUp 的调用具有取消共享行的效果,则它必须返回 true
。 否则应返回 false
。
有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法。