When I run my program with debug then everything works normal, but whenever I run without debug or from the exe it dosn't display anything. Actually it tells me it is empty when I have already added the controls in xaml, they are static not dynamic at all. It still says all my controls exist and I can use them but they not displayed at all. This used to work but I made not changes that would break it. I do however toggle it's visibility but even when I have it always visible it dosn't work. It's like it is not seeing anything under the RadDocking tag.
<telerik:RadDocking Background="#edf3fa" x:Name="dmManager" Grid.Row="1" Margin="0,0,0,33" Padding="0,0,0,0"> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup> (Assume controls) </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer InitialPosition="DockedLeft"> <telerik:RadPaneGroup> (Assume controls) </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer InitialPosition="DockedRight"> <telerik:RadPaneGroup> (Assume controls) </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer x:Name="Bottom" InitialPosition="DockedBottom"> <telerik:RadPaneGroup> (Assume controls) </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking>