I am creating panels in code in this way:
DockableContent dockableContent = CreateDockableContent<TView>(model);
dockableContent.Show(_dockingManager, AnchorStyle.Bottom);
How can I specify the initial height for that panel? The following doesn't work:
dockableContent.Height = 400;
or
ResizingPanel.SetResizeHeight(dockableContent, new GridLength(400));