DataGridViewCell.OnMouseEnter(Int32) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Dipanggil saat penunjuk mouse bergerak di atas sel.
protected:
virtual void OnMouseEnter(int rowIndex);
protected virtual void OnMouseEnter (int rowIndex);
abstract member OnMouseEnter : int -> unit
override this.OnMouseEnter : int -> unit
Protected Overridable Sub OnMouseEnter (rowIndex As Integer)
Parameter
- rowIndex
- Int32
Indeks baris induk sel.
Contoh
Contoh kode berikut mengilustrasikan penggunaan metode ini. Contoh ini adalah bagian dari contoh yang lebih besar yang tersedia di Cara: Menyesuaikan Sel dan Kolom di kontrol Formulir Windows DataGridView dengan Memperluas Perilaku dan Tampilannya.
// Force the cell to repaint itself when the mouse pointer enters it.
protected override void OnMouseEnter(int rowIndex)
{
this.DataGridView.InvalidateCell(this);
}
// Force the cell to repaint itself when the mouse pointer leaves it.
protected override void OnMouseLeave(int rowIndex)
{
this.DataGridView.InvalidateCell(this);
}
' Force the cell to repaint itself when the mouse pointer enters it.
Protected Overrides Sub OnMouseEnter(ByVal rowIndex As Integer)
Me.DataGridView.InvalidateCell(Me)
End Sub
' Force the cell to repaint itself when the mouse pointer leaves it.
Protected Overrides Sub OnMouseLeave(ByVal rowIndex As Integer)
Me.DataGridView.InvalidateCell(Me)
End Sub
Keterangan
Metode ini mirip DataGridView.OnCellMouseEnter dengan metode . Ini dipanggil dalam keadaan yang sama di mana peristiwa DataGridView.CellMouseEnter dinaikkan, tetapi tidak benar-benar menaikkan acara.
Berlaku untuk
Lihat juga
- DataGridView
- OnCellMouseEnter(DataGridViewCellEventArgs)
- CellMouseEnter
- OnMouseClick(DataGridViewCellMouseEventArgs)
- OnMouseDoubleClick(DataGridViewCellMouseEventArgs)
- OnMouseDown(DataGridViewCellMouseEventArgs)
- MouseEnterUnsharesRow(Int32)
- OnMouseLeave(Int32)
- OnMouseMove(DataGridViewCellMouseEventArgs)
- OnMouseUp(DataGridViewCellMouseEventArgs)