This question is locked. New answers and comments are not allowed.
Hi,
I added a RadSplitContainer to a RadDocking with the InitialPosition set to DockState.FloatingDockable and by default the window have a close button. How can I remove the button from the RadSplitContainer?
This is my xaml file:
and this is my cs file:
Thanks,
Jimmi
I added a RadSplitContainer to a RadDocking with the InitialPosition set to DockState.FloatingDockable and by default the window have a close button. How can I remove the button from the RadSplitContainer?
This is my xaml file:
| <Grid x:Name="LayoutRoot" Background="White"> |
| <telerikDocking:RadDocking x:Name="DockingHost" /> |
| </Grid> |
and this is my cs file:
| void ShellLight_Loaded(object sender, RoutedEventArgs e) |
| { |
| var splitter = new RadSplitContainer(); |
| splitter.InitialPosition = DockState.FloatingDockable; |
| splitter.SetValue(RadDocking.FloatingSizeProperty, new Size(650, 450)); |
| splitter.SetValue(RadDocking.FloatingLocationProperty, new Point(300, 150)); |
| DockingHost.Items.Add(splitter); |
| } |
Thanks,
Jimmi