internal
WndMain()
{
InitializeComponent()
this
.GridViewLocalizations.MouseMove +=
new
MouseEventHandler(GridViewLocalizations_MouseMove);
}
void
GridViewLocalizations_MouseMove(
object
sender, MouseEventArgs e)
{
}
"GridViewLocalizations_MouseMove
" does not get called on moving the mouse over the GridView. Why?
How can I trap MouseMove events on a GridView?
And why can't I write outside of this code block anyway?? Man, Telerik sometimes...