DataGridViewCheckBoxCell.MouseUpUnsharesRow 方法

定义

指示当指针放置在单元格上时,松开鼠标按钮是否会导致包含该单元格的行取消共享。

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

参数

e
DataGridViewCellMouseEventArgs

一个 DataGridViewCellMouseEventArgs,它包含有关鼠标单击的数据。

返回

总是为 true

注解

对于此单元格类型,在指针位于单元格上方时释放鼠标始终会取消共享包含该单元格的行。

MouseUpUnsharesRow 在 之前 OnMouseUp调用 。 如果对 OnMouseUp 的调用具有取消共享包含单元格的行的效果,则必须返回 true 。 否则,它应返回 false

有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法

适用于

另请参阅