This question is locked. New answers and comments are not allowed.
I have a RadSplitContainer that looks like so:
Is there a way in which I can programatically change the Height of the second RadPaneGroup? I've tried doing something like:
but it does not appear to change the height of the pane at all. Any help on this would be appreciated.
Thanks.
<
telerik:RadSplitContainer
x:Name
=
"radSplitContainer"
Orientation
=
"Vertical"
>
<
telerik:RadPaneGroup
>
<
telerik:RadPane
CanFloat
=
"False"
CanUserClose
=
"False"
CanUserPin
=
"False"
PaneHeaderVisibility
=
"Collapsed"
>
<
telerik:RadTileView
x:Name
=
"tileView"
/>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
<
telerik:RadPaneGroup
x:Name
=
"gridPaneGroup"
>
<
telerik:RadPane
CanFloat
=
"False"
CanUserClose
=
"False"
CanUserPin
=
"False"
PaneHeaderVisibility
=
"Collapsed"
x:Name
=
"gridPane"
IsHidden
=
"False"
>
<
local:MyControl
/>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadSplitContainer
>
Is there a way in which I can programatically change the Height of the second RadPaneGroup? I've tried doing something like:
this
.gridPaneGroup.Height = 150;
but it does not appear to change the height of the pane at all. Any help on this would be appreciated.
Thanks.