How can I set the width by code in a column of the radsplitcontainer?
I tried setting the width of the item that's inside that column, but then the left and right overlap.
I want to make the radPaneGroup2 width fixed, but I can't manage to do it, without it overlapping radPaneDocuments.
Thanks in advance.
I tried setting the width of the item that's inside that column, but then the left and right overlap.
<telerik:RadDocking x:Name="radDocking" Grid.Row="1"> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup x:Name="radPaneGroup2"> <telerik:RadPane x:Name="radPaneTools" Header="Options"> <StackPanel> <telerik:RadButton x:Name="btnCustomers" Content="Customers" Click="btnCustomers_Click" /> </StackPanel> </telerik:RadPane> </telerik:RadPaneGroup> <telerik:RadPaneGroup x:Name="radPaneDocuments" SelectionChanged="radPaneDocuments_SelectionChanged"> <telerik:RadPane x:Name="radPane1" Header="Document 1"> <TextBlock TextWrapping="Wrap" Text=""></TextBlock> </telerik:RadPane> <telerik:RadPane x:Name="radPane2" Header="Document 2"> <TextBlock TextWrapping="Wrap" Text=""></TextBlock> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> </telerik:RadDocking>I want to make the radPaneGroup2 width fixed, but I can't manage to do it, without it overlapping radPaneDocuments.
Thanks in advance.