Hello there,
I want to be able to auto-resize a RadPane inside a RadDocking and RadSplitContainer up to the remaining place, when other sibling RadPanes get undocked and moved away per Drag&Drop.
Please, take a look at the attached code snippet for more info.
There are other RadPanes parallel to ProgressPane, and 3 more RadSplitContainers parallel to RadDocking.DocumentHost inside RadDocking.
As said, when one of the other gets collapsed and more space is available at that docking position, I want the other RadPanes to stretch in size to take over that space.
How can I do this? Thanks.
Regards,
Baris
I want to be able to auto-resize a RadPane inside a RadDocking and RadSplitContainer up to the remaining place, when other sibling RadPanes get undocked and moved away per Drag&Drop.
Please, take a look at the attached code snippet for more info.
01.
<
telerik:RadDocking
x:Name
=
"dockEngineering"
02.
Grid.Row
=
"1"
03.
Margin
=
"0,0,0,0"
04.
BorderThickness
=
"0"
05.
Padding
=
"0"
06.
Background
=
"{StaticResource LightGrayBrush}"
07.
x:FieldModifier
=
"public"
>
08.
<
telerik:RadDocking.DocumentHost
>
09.
<
telerik:RadSplitContainer
x:Name
=
"MiddleContainer"
>
10.
<
telerik:RadPaneGroup
x:Name
=
"MiddleGroup"
>
11.
<
telerik:RadPane
x:Name
=
"ProgressPane"
Header
=
"Progress View"
>
12.
<
Grid
Name
=
"grdProgress"
>
13.
<
local:ProgressView
DataContext
=
"{Binding ProgressViewModel}"
/>
14.
</
Grid
>
15.
</
telerik:RadPane
>
16.
</
telerik:RadPaneGroup
>
17.
</
telerik:RadSplitContainer
>
18.
</
telerik:RadDocking.DocumentHost
>
19.
</
telerik:RadDocking
>
There are other RadPanes parallel to ProgressPane, and 3 more RadSplitContainers parallel to RadDocking.DocumentHost inside RadDocking.
As said, when one of the other gets collapsed and more space is available at that docking position, I want the other RadPanes to stretch in size to take over that space.
How can I do this? Thanks.
Regards,
Baris