I've been playing around with RadDock and not been able to get my head around this control...
Here is my scenario( bit simplyfied):
I've got a RadDock, which I add usercontrols to:
Then, when a user click on a button in one of these, to open a map, I add a new tab containing map with DockPosition.Right.
This works fine.
But next time I add a usercontrol, I want it to Fill(like merging Map with the others tabs), but it adds to the active DockWindow, either o the right or left.
Any tip would be apreciated!
Here is my scenario( bit simplyfied):
I've got a RadDock, which I add usercontrols to:
UserControlPlugInDemo ucpid = new UserControlPlugInDemo(); DockPosition dockTo = DockPosition.Fill; this.radDock1.DockControl(ucpid, dockTo, DockType.Document);
Then, when a user click on a button in one of these, to open a map, I add a new tab containing map with DockPosition.Right.
This works fine.
But next time I add a usercontrol, I want it to Fill(like merging Map with the others tabs), but it adds to the active DockWindow, either o the right or left.
Any tip would be apreciated!