This question is locked. New answers and comments are not allowed.
I have a RadDocking control layed out with two rows(showing the serialized layouot) that are set with relative size(percentage based)
When a user drags a RadPaneGroup to the root(top) it will always create a RadSplitContainer with a hardcoded height. example below.
Note* notice the Height
I need to keep everything relative. How do we change the behavior so RadDocking does not use hardcoded sizes?
.
<RadSplitContainer Dock="DockedLeft" Orientation="Vertical"> <Items> <RadSplitContainer RelativeWidth="400" RelativeHeight="200"> ....
</Items> </RadSplitContainer> <RadSplitContainer RelativeWidth="400" RelativeHeight="200" Orientation="Horizontal"> <Items> ....
</Items> </RadSplitContainer> </Items> </RadSplitContainer> </Items> </RadSplitContainer>When a user drags a RadPaneGroup to the root(top) it will always create a RadSplitContainer with a hardcoded height. example below.
Note* notice the Height
="180"<?xml version="1.0" encoding="utf-8"?> <RadDocking> <SplitContainers> <RadSplitContainer Dock="DockedTop" Height="180" RelativeWidth="100" RelativeHeight="100" IsAutoGenerated="True"> <Items> <RadPaneGroup RelativeWidth="100" RelativeHeight="100" IsAutoGenerated="True" SelectedIndex="0"> <Items> <RadPane SerializationTag="TileId=4" IsHidden="False" IsDockable="True" Title="" Header="" /> </Items> </RadPaneGroup> </Items> </RadSplitContainer> <RadSplitContainer Dock="DockedLeft" Orientation="Vertical"> <Items> .....
</Items> </RadSplitContainer> </SplitContainers> </RadDocking>I need to keep everything relative. How do we change the behavior so RadDocking does not use hardcoded sizes?