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,
You can create a class for implementing ICommand interface.
I have attached a sample when using this 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");
In this thread you can provide some details on how the content pane is added in the control.
For programatically setting a content pane active in MVVM I'll look into any options on this.
I will send another update for a progress on the thread Monday for any questions.
Hi Duane, thanks for your reply.Using MVVM, this doesn't work, as this is definitely code behind. I forgot perhaps to say that.Also using the NCAL library for PRISM.
Is this possible through MVVM + PRISM (NCAL)?Thank you!