This is a migrated thread and some comments may be shown as answers.

RadGridRow MouseLeftButtonUp event is not firing

0 Answers 116 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Dan
Top achievements
Rank 1
Dan asked on 10 Aug 2011, 01:45 PM
Hi,

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?

No answers yet. Maybe you can help?

Tags
GridView
Asked by
Dan
Top achievements
Rank 1
Share this question
or