Hello!
How do I hide the ribbon bar to keep the window title? Can't understand.
Or I hide the entire ribbon with the RibbonBar command.Visible = false
If I try to hide the TabStrip element, I have an empty bar from the window title to the next component.
4 Answers, 1 is accepted
0
Accepted
Hello Alex,
You can hide the following element and the title bar will remain visible:
I hope this will be useful. Let me know if you have additional questions.
Regards,
Dimitar
Progress Telerik
You can hide the following element and the title bar will remain visible:
radRibbonBar1.RibbonBarElement.TabStripElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
radRibbonBar1.RibbonBarElement.ApplicationButtonElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
radRibbonBar1.RibbonBarElement.ExpandButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
I hope this will be useful. Let me know if you have additional questions.
Regards,
Dimitar
Progress Telerik
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
0
Accepted
Hi Alex,
You can use the maximum size:
Please note that the ribbon bar has a built-in collapse/expand functionality, you can use the expand button (under the close button) or double-click any tab.
Should you have any other questions do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
You can use the maximum size:
radRibbonBar1.MaximumSize =
new
Size(0, 30);
Please note that the ribbon bar has a built-in collapse/expand functionality, you can use the expand button (under the close button) or double-click any tab.
Should you have any other questions do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Alex
Top achievements
Rank 1
answered on 20 Nov 2018, 09:55 AM
Thank you very much, now everything is working correctly!