Hello,
I'm using the XamDockManager along with the NCAL library for my prism application.Upon adding a pane into my dockmanager splitpane, I want to make that pane the active one so it appears.How can I do that?Thank you!
Hello pythagorus,
In this thread you can provide some details on how the content pane is added in the control.
Let me know if you have any questions with this matter. Thank you.
The content pane is added by PRISM (using the NCAL library)
IRegion region = _regionManager.Regions[RegionNames.DockingAreaRegion]; object customerNavView = region.GetView("customerNav"); if (customerNavView == null) region.Add(vm.View, "customerNav");
You can create a class for implementing ICommand interface.
I have attached a sample when using this control.