This question is locked. New answers and comments are not allowed.
Hi All,
I have a layout problem.
I have a dockpanel with two areas :
one is docked on the left and the other one is docked to fill.
Into the left docked one, I have a radPanelBar with two RadPanelItems.
The first one must have its height fixed to its content height but the second one should take all the remaining height.
In this second radPanelItem I have a dock panel with 3 areas :
one is docked top
one is docked bottom
one is docked to fill
I would like my area docked to bottom to be really at bottom of the main control but can't figure out why it isn't.
Does anyone has an idea ?
Here is a code chunk to see which layout I have.
Thanks,
Regards
Steeve
I have a layout problem.
I have a dockpanel with two areas :
one is docked on the left and the other one is docked to fill.
Into the left docked one, I have a radPanelBar with two RadPanelItems.
The first one must have its height fixed to its content height but the second one should take all the remaining height.
In this second radPanelItem I have a dock panel with 3 areas :
one is docked top
one is docked bottom
one is docked to fill
I would like my area docked to bottom to be really at bottom of the main control but can't figure out why it isn't.
Does anyone has an idea ?
Here is a code chunk to see which layout I have.
<controlsToolkit:DockPanel x:Name="LayoutRoot"> <controlsToolkit:DockPanel controlsToolkit:DockPanel.Dock="Left" Width="300"> <telerikNavigation:RadPanelBar ExpandMode="Multiple" VerticalAlignment="Stretch"> <telerikNavigation:RadPanelBarItem Header="Fixed" IsExpanded="True" VerticalAlignment="Top"> <Textblock Text="Fixed Area" /> </telerikNavigation:RadPanelBarItem> <telerikNavigation:RadPanelBarItem Header="Fill" IsExpanded="True" VerticalAlignment="Stretch" VerticalContentAlignment="Stretch"> <controlsToolkit:DockPanel> <controlsToolkit:WrapPanel controlsToolkit:DockPanel.Dock="Top"> <Textblock Text="Dock Top" /> </controlsToolkit:WrapPanel> <controlsToolkit:WrapPanel controlsToolkit:DockPanel.Dock="Bottom"> <Textblock Text="Dock Bottom Should be at bottom of the page" /> </controlsToolkit:WrapPanel> <controlsToolkit:WrapPanel> <Textblock Text="Dock Fill" /> </controlsToolkit:WrapPanel> </controlsToolkit:DockPanel> </telerikNavigation:RadPanelBarItem> </telerikNavigation:RadPanelBar> </controlsToolkit:DockPanel> <controlsToolkit:DockPanel> <Textblock Text="Center area" /> </controlsToolkit:DockPanel></controlsToolkit:DockPanel>Thanks,
Regards
Steeve