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
1175
Hiding Ultraexplorer bar's context menu
posted

Hi 

How to hide ultra explorer bar's default context menu? 

 

thx in advance

Regards

Asad 

Parents
No Data
Reply
  • 1175
    posted

    There are two solutions for this problem, 

    1 -

      private void ultraExplorerBar1_ContextMenuInitializing(object sender, Infragistics.Win.UltraWinExplorerBar.CancelableContextMenuInitializingEventArgs e)
            {
                e.Cancel = true;
            }

    you can also try this 

    2 -  ultraExplorerBar1.ShowDefaultContextMenu = false;

     Regards

    Asad 

Children
No Data