Hello,
I am required to create an interface that has forms within side RadPanes and a WebBrowser control (another others) in the main DocumentHost window. For some reason only a few of the controls within the DocumentHost render at runtime. Also, the controls that do display are not maintaining their position correctly.
See attached image.
How do I accomplish the desired interface? OR What am I doing wrong?
Thank you and best regards,
Mike
I am required to create an interface that has forms within side RadPanes and a WebBrowser control (another others) in the main DocumentHost window. For some reason only a few of the controls within the DocumentHost render at runtime. Also, the controls that do display are not maintaining their position correctly.
See attached image.
How do I accomplish the desired interface? OR What am I doing wrong?
<telerik:RadDocking.DocumentHost> |
<telerik:RadSplitContainer> |
<telerik:RadPaneGroup> |
<telerik:RadPane Header="Browser" CanFloat="False"> |
<Grid x:Name="grdBrowser" Margin="0"> |
<StackPanel HorizontalAlignment="Stretch" Margin="6" Name="stackPanel1" VerticalAlignment="Stretch"> |
<StackPanel Name="stackPanel2" Orientation="Horizontal" VerticalAlignment="Top" HorizontalAlignment="Stretch"> |
<Button x:Name="btnWebPrev" HorizontalAlignment="Left" Height="34" Style="{DynamicResource stylePreviousButton}" VerticalAlignment="Top" Width="34" Cursor="Hand"/> |
<Button x:Name="btnWebNext" HorizontalAlignment="Left" Height="34" Style="{DynamicResource styleNextButton}" VerticalAlignment="Top" Width="34" Cursor="Hand"/> |
<TextBox Height="23" x:Name="txtWebURL" Width="519" /> |
<Button x:Name="btnWebSearch" HorizontalAlignment="Left" Height="34" Style="{DynamicResource styleSearchButton}" VerticalAlignment="Top" Width="34" Cursor="Hand" Click="btnWebSearch_Click"/> |
<Button x:Name="btnWebStop" HorizontalAlignment="Left" Height="34" Style="{DynamicResource styleStopButton}" VerticalAlignment="Top" Width="34" Cursor="Hand"/> |
<Button x:Name="btnWebRefresh" HorizontalAlignment="Left" Height="34" Style="{DynamicResource styleRefreshButton}" VerticalAlignment="Top" Width="34" Cursor="Hand"/> |
<Button x:Name="btnWebAddSource" HorizontalAlignment="Left" Height="34" Style="{DynamicResource styleAddSourceButton}" VerticalAlignment="Top" Width="34" Cursor="Hand"/> |
</StackPanel> |
<WebBrowser Height="603" x:Name="webBrowser" /> |
<StackPanel Name="stackPanel3" Orientation="Horizontal"> |
<Label Content="Label" Height="28" Name="lblStatus" /> |
</StackPanel> |
</StackPanel> |
</Grid> |
</telerik:RadPane> |
</telerik:RadPaneGroup> |
</telerik:RadSplitContainer> |
</telerik:RadDocking.DocumentHost> |
Thank you and best regards,
Mike