This is a migrated thread and some comments may be shown as answers.

Docking Empty when runing without debug

2 Answers 63 Views
Docking
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 26 Nov 2012, 04:00 PM
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>

2 Answers, 1 is accepted

Sort by
0
Alex
Top achievements
Rank 1
answered on 26 Nov 2012, 05:28 PM
I narrowed it down to the fact that it is not setting the parent for any of my controls when I am not debuging.
0
Alex
Top achievements
Rank 1
answered on 26 Nov 2012, 07:32 PM
For some reason while I am able to load the layout no problem from when debuging it dosn't work when I try when running without debuging. 
Tags
Docking
Asked by
Alex
Top achievements
Rank 1
Answers by
Alex
Top achievements
Rank 1
Share this question
or