Hi,
I would like to detect mouse click on each row in RadGridView. Here is my code sample:
The problem is that this event is never fired. I can change event to MouseRightButtonUp or even MouseEnter and it all works fine. Why i cannot subscribe to MouseLeftButtonUp?
I would like to detect mouse click on each row in RadGridView. Here is my code sample:
private
void
ContactsGridViewRowLoaded(
object
sender, RowLoadedEventArgs e)
{
e.Row.MouseLeftButtonUp +=
delegate
(
object
sender1, MouseButtonEventArgs e1)
{
MessageBox.Show(
"click!"
);
};
}
The problem is that this event is never fired. I can change event to MouseRightButtonUp or even MouseEnter and it all works fine. Why i cannot subscribe to MouseLeftButtonUp?