Dear Telerik support,
In my project I have 3 RadSplitContainer and I would like if one of these not able to resize, I dont want to appear the resize arrow (this is a panel which contains buttons).
I tried this, but this disable all container resizing:
I tried if set the min/max height, but when I load back the layout the panel will be resizable again (I use layout save and load).
The base of the code:
Is there any possibility to disable resizing, or how can I solve this problem?
Thanks,
Rob
In my project I have 3 RadSplitContainer and I would like if one of these not able to resize, I dont want to appear the resize arrow (this is a panel which contains buttons).
I tried this, but this disable all container resizing:
<telerik:RadDocking.Resources>
<Style TargetType=
"telerik:RadGridResizer"
>
<Setter Property=
"IsHitTestVisible"
Value=
"False"
/>
</Style>
</telerik:RadDocking.Resources>
I tried if set the min/max height, but when I load back the layout the panel will be resizable again (I use layout save and load).
The base of the code:
<telerikDocking:RadDocking >
<telerikDocking:RadDocking.DocumentHost>
<telerikDocking:RadSplitContainer>
<telerikDocking:RadPaneGroup>
<telerikDocking:RadPane BorderThickness=
"0"
CanUserClose=
"False"
CanFloat=
"False"
CanUserPin=
"False"
>
<!-Content->
</telerikDocking:RadPane>
<telerikDocking:RadPane BorderThickness=
"0"
CanUserClose=
"False"
CanFloat=
"False"
CanUserPin=
"False"
>
<!-Content->
</telerikDocking:RadPane>
<telerikDocking:RadPane BorderThickness=
"0"
CanUserClose=
"False"
CanFloat=
"False"
CanUserPin=
"False"
>
<!--Content-->
</telerikDocking:RadPane>
<telerikDocking:RadPane BorderThickness=
"0"
CanUserClose=
"False"
CanFloat=
"False"
CanUserPin=
"False"
>
<!-Content->
</telerikDocking:RadPane>
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
</telerikDocking:RadDocking.DocumentHost>
<telerikDocking:RadSplitContainer InitialPosition=
"DockedBottom"
telerikDocking:DockingPanel.InitialSize=
"400,200"
>
<telerikDocking:RadPaneGroup>
<telerikDocking:RadPane CanUserClose=
"False"
CanFloat=
"True"
CanUserPin=
"True"
IsPinned=
"True"
>
<!-Content->
</telerikDocking:RadPane>
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
<telerikDocking:RadSplitContainer InitialPosition=
"DockedBottom"
Height=
"60"
VerticalAlignment=
"Center"
VerticalContentAlignment=
"Center"
MaxHeight=
"60"
MinHeight=
"60"
>
<telerikDocking:RadPaneGroup Padding=
"0"
VerticalAlignment=
"Center"
VerticalContentAlignment=
"Center"
>
<telerikDocking:RadPane PaneHeaderVisibility=
"Collapsed"
BorderThickness=
"0"
CanUserClose=
"False"
CanFloat=
"False"
Height=
"60"
CanDockInDocumentHost=
"False"
CanUserPin=
"False"
IsPinned=
"True"
>
<!--Not dockable not resizable content-->
</telerikDocking:RadPane>
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
</telerikDocking:RadDocking>Is there any possibility to disable resizing, or how can I solve this problem?
Thanks,
Rob