Articles in this section
Category / Section

How to change the visibility property of the LauncherButton in WPF Ribbon control?

1 min read

You can change the visibility property of the LauncherButton of RibbonBar to Hidden or visible in WPF Ribbon control. Refer the below code reference.

C#

//creating an instance of ribbon bar
RibbonBar ribbonbar = new RibbonBar();
//setting the visibility of the laucher button to collapsed
ribbonbar.LauncherButton.Visibility = Visibility.Collapsed;
//setting the visibility of the laucher button to visible
ribbonbar.LauncherButton.Visibility = Visibility.Visible;

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied