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
4032
UltraExplorerBar item double click not fired
posted

I have found some posts about this, but no solution.

I have attached a litte sample to show you: It's as simple as possible, I have placed a explorer bar with one group and 4 items and try to get the double click event.

Any ideas why the event is not fired?

Regards

Markus

ExplorerBarDoubleClick.zip
Parents
No Data
Reply
  • 4032
    Offline posted

    Hi again,

    I have updated my test project to newest version (14.2.20142.2034). The event will still not be fired. It seems to be a bug.

    Look at the two event handlers I have defined: even for double clicks on a item the scond handler below is called:

            private void ExplorerBar_ItemDoubleClick( object sender, Infragistics.Win.UltraWinExplorerBar.ItemEventArgs e )
            {
                // never called
            }

            private void ExplorerBar_DoubleClick( object sender, EventArgs e )
            {
                // called on double click either on explorerbar OR or item double click
            }

    Do I miss something?

    Regards

Children