Hi
I wanted to disable the border of a radSplitContainer. With the theme: office2013Light the following code is working:
this.radSplitContainer1.RootElement.EnableElementShadow = false;
this.radSplitContainer1.RootElement.MinSize = new System.Drawing.Size(25, 25);
this.radSplitContainer1.Size = new System.Drawing.Size(428, 318);
this.radSplitContainer1.SplitterWidth = 8;
this.radSplitContainer1.TabIndex = 0;
this.radSplitContainer1.TabStop = false;
this.radSplitContainer1.ThemeName = "Office2013Light";
With the theme MaterialBlueGrey, there is still a border on the display.
Do you have any other ideas on how I can disable the border?
Thank you in advance.
Kind Regards
Dominik