I'm trying to do this:
However, IsFloating is a read-only property.
So how do I create a pane that is floating on creation and how would I programmatically set the size of the floating window?
Does the user have to physically float the window themselves?
// Create new pane._dockPane = new RadPane { Content = viewModel, Title = title };_dockPane.IsFloating = true;However, IsFloating is a read-only property.
So how do I create a pane that is floating on creation and how would I programmatically set the size of the floating window?
Does the user have to physically float the window themselves?