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
2915
How to hide navigation pane options/menu to add new group/button?
posted

 How can I remove this context menu completely? The application will have a set of buttons on load and that should not be modified. Does this come under navigation pane options, groups or buttons? Can you suggest any options for this?


Parents
No Data
Reply
  • 14517
    Offline posted

    Hello,

     

    You can use the OverflowMenuButtonStyleKey to style the menu item which opens the menu as follows:

     

    <igOB:XamOutlookBar x:Name="myOutlookBar" >

        <igOB:XamOutlookBar.Resources>

           <Style x:Key="{x:Static igOutlookBar:XamOutlookBar.OverflowMenuButtonStyleKey}" TargetType="MenuItem">

              <Setter Property="Visibility" Value="Collapsed"/>

           </Style>

       </igOB:XamOutlookBar.Resources>

     

     

    Sincerely,

    Valerie

    Developer Support Engineer

    Infragistics

    www.infragistics.com/support

Children