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
3455
How to know Mouse down on Column header
posted

HI,

How to know Mouse Down on Column header.

regards,

pgr2007

Parents
  • 1360
    posted

    Do you mean something like this?

     

    Infragistics.Win.UIElement element = _grid.DisplayLayout.UIElement.ElementFromPoint(_grid.DisplayLayout.UIElement.CurrentMousePosition);

    if(element is HeaderUIElement) return true;

    else return false;

Reply Children
No Data