Hi,
I've overriden the flygrid control as :
Public Class myGrid
Inherits NineRays.Windows.Forms.FlyGrid
Protected Overrides Sub OnMouseLeave(ByVal e As System.EventArgs)
MsgBox("mouse leaves")
End Sub
End Class
issue is that the event is triggered not only when the mouse leaves the grid but also when you click on a cell of the grid, why ?? Is that a bug ?