Category:Tools for WinForms: Visual Style Builder, Control Spy, Shape Editor, Element Hierarchy Editor
Type:Bug Report
FIX. RadSplitContainer - FillPrimitive set to the SplitterElements is not persisted
Workaround: change the backcolors of the splitters at run-time
foreach (SplitterElement splitter in this.radSplitContainer1.Splitters)
{
splitter.BackgroundFill.BackColor = Color.Red;
}