Hi, I have a Ribbon, with 5 Tabs visible and 5 tabs invisible. I have a toggle button that on pressing, runs the following code: //For all tabs for( int i = 0; i < Ribbon.Tabs.Count; i++) { //Toggle the visibility Ribbon.Tabs[i].Visible = !Ribbon.Tabs[i].Visible; } All the tabs have an event handler...