I have set my RadDock MainDocumentContainerVisible = false and BorderStyle = none. But there is still a borderline on the left and top. If I set the BorderStyle to FixedSingle, the whole thing has a border, but the Left and Top still have an extra wide border. What is causing this?
Thanks,
G
2 Answers, 1 is accepted
0
Accepted
Nikolay
Telerik team
answered on 21 Nov 2012, 03:09 PM
Hi Glenn,
If I understand your requirement correctly, you want to remove the border area between the ToolTabStrip that contains your ToolWindows and the edges of RadDock. If this is your case, you can hide it by removing the Padding from the RootElement of RadDock:
this.radDock1.RootElement.Padding = new Padding(0);