DataGridViewCheckBoxCell.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
參數
DataGridViewCellMouseEventArgs,包含滑鼠點選的相關資料。
傳回
一定是 true
。
備註
針對此儲存格類型,當指標位於儲存格上方時釋放滑鼠,一律會取消共用包含儲存格的數據列。
MouseUpUnsharesRow 在之前 OnMouseUp呼叫 。 如果的呼叫OnMouseUp具有取消共用包含儲存格之資料列的效果,它必須傳回 true
。 否則應該會傳回 false
。
如需數據列共用的詳細資訊,請參閱調整 dataGridView 控件 Windows Forms 最佳做法。