DataGridViewHeaderCell.MouseDownUnsharesRow 方法

定义

指示当鼠标指针位于行中某个单元格上并按下鼠标按钮时,该行是否取消共享状态。

protected:
 override bool MouseDownUnsharesRow(System::Windows::Forms::DataGridViewCellMouseEventArgs ^ e);
protected override bool MouseDownUnsharesRow (System.Windows.Forms.DataGridViewCellMouseEventArgs e);
override this.MouseDownUnsharesRow : System.Windows.Forms.DataGridViewCellMouseEventArgs -> bool
Protected Overrides Function MouseDownUnsharesRow (e As DataGridViewCellMouseEventArgs) As Boolean

参数

e
DataGridViewCellMouseEventArgs

DataGridViewCellMouseEventArgs,它包含有关鼠标位置的信息。

返回

true如果用户使用鼠标左键单击,则启用视觉样式,属性EnableHeadersVisualStyles为 ,而 DataGridView 属性不是 null;否则为 falsetrue

注解

有关启用视觉样式的信息,请参阅 Application.EnableVisualStyles 方法。

MouseDownUnsharesRow 在 之前 OnMouseDown调用 。 如果 对 OnMouseDown 的调用具有取消共享行 rowIndex的效果,则它必须返回 true 。 否则应返回 false

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

适用于

另请参阅