Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
How to add GroupByRow Double Click event handler for Outlook Group By in Infragistics Win Grid
posted

I need to handle the double click event of a GroupByRow description and cannot figure out how to do that.

  • 469350
    Verified Answer
    Offline posted

    To detect a double-click on a GroupByRow, you could do something like this:


            private void ultraGrid1_DoubleClickRow(object sender, DoubleClickRowEventArgs e)
            {
                if (e.Row.IsGroupByRow)
                {
                    // Do something.
                }
            }

    If you need to get more specific about which part of the GroupByRow was clicked, then you would need to use the MouseDown or MouseUp event and use the grid's UIElements to determine what was clicked.