Hello, I am trying to restrict a floating window to be resized manually. In addition, I want a user control to fill out the space it needs and have the floating window adjust to its content. Is this possible?
My XAML:
<telerik:RadDocking x:Name="radDocking" Height="1" Width="1"> <telerik:RadSplitContainer InitialPosition="FloatingOnly" telerik:RadDocking.FloatingLocation="100,400"
telerik:RadDocking.FloatingSize="800,500"> <telerik:RadPaneGroup> <telerik:RadPane x:Name="ScheduleControlPane" CanUserPin="False" Header="Kontroll" Loaded="ScheduleControlPane_Loaded"
IsHidden="{Binding Path=IsChecked, ElementName=ScheduleControlToggleButton, Converter={StaticResource invertedBooleanConverter}, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"> <controlviews:ControlView HorizontalAlignment="Stretch" VerticalAlignment="Stretch" DataContext="{Binding ControlViewModel}"></controlviews:ControlView> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking>