I have a DockAreaPane that has two different pane's in it. When the application starts one pane should be active. Events in the system should switch the pane to the other panel. How is this done programmatically?
Sam
Sam,
In order to activate a particular DockableControlPane, you will first need to get a reference to it (the easiest way to do this is to use the UltraDockManager's PaneFromControl() method), and then call its Activate() method. For example:
DockableControlPane dcp = this.ultraDockManager1.PaneFromControl(this.ultraButton2); dcp.Activate();
~Kim~