I want change RadDock menu bar back color and height.
I can't speak english very well.
So I attach the file.
2 Answers, 1 is accepted
0
Accepted
Nadya | Tech Support Engineer
Telerik team
answered on 08 May 2020, 02:40 PM
Hello Jin,
In order to achieve this, you should first access the RadPageViewTabStripElement. Then you can get the StripViewItemLayout that holds the tabbed tool windows. Please refer to the following code snippet that demonstrates how you can customize it:
RadPageViewTabStripElement tapStrp =toolWindow1.TabStrip.TabStripElement as RadPageViewTabStripElement;
tapStrp.ItemContainer.ItemLayout.BackColor = Color.Red;
tapStrp.ItemContainer.ItemLayout.GradientStyle = GradientStyles.Solid;
tapStrp.ItemContainer.ItemLayout.DrawFill = true;
tapStrp.ItemContainer.ItemLayout.Size = new Size(0, 25);
I hope this helps. If you need further assistance do not hesitate to contact me.
Regards,
Nadya
Progress Telerik
Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic. Our thoughts here at Progress are with those affected by the outbreak.