DataGridViewHeaderCell.MouseEnterUnsharesRow(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出當滑鼠指標移到某資料列的儲存格上方時,是否取消共用該資料列。
protected:
override bool MouseEnterUnsharesRow(int rowIndex);
protected override bool MouseEnterUnsharesRow (int rowIndex);
override this.MouseEnterUnsharesRow : int -> bool
Protected Overrides Function MouseEnterUnsharesRow (rowIndex As Integer) As Boolean
參數
- rowIndex
- Int32
滑鼠指標進入的資料列之索引。
傳回
true
如果已啟用視覺化樣式,且 EnableHeadersVisualStyles 屬性為 true
,且 DataGridView 屬性不是 null
,則為 ,否則 false
為 。
備註
如需啟用可視化樣式的相關信息,請參閱 Application.EnableVisualStyles 方法。
MouseEnterUnsharesRow 在之前 OnMouseEnter呼叫 。 如果的呼叫OnMouseEnter具有取消共享資料列 rowIndex
的效果,它必須傳回 true
。 否則應該會傳回 false
。
如需數據列共用的詳細資訊,請參閱調整 dataGridView 控件 Windows Forms 最佳做法。
給繼承者的注意事項
在 MouseEnterUnsharesRow(Int32) 衍生類別中覆寫時,請務必呼叫基類的 MouseEnterUnsharesRow(Int32) 方法,讓已註冊的委派接收事件。