Hello,
I have two dock managers in two different tabs and I try to move panel from one dock manager to the other.
private void dockPanel_MoveToManager(object sender, MouseEventArgs e)
{//MyPanel was in dockmanager2 and I want to move it to dockmanager1
DockPanel MyPanel = (DockPanel)sender;
this.dockingManager1.SetDock(MyPanel,DockPosition.Bottom);
this.dockingManager2.Remove(MyPanel);
}
Is that possible?