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,
For making the content pane active you can use the Activate() method. E.g.:
IEnumerable<ContentPane> contentPanes = xamDockManager1.GetPanes(PaneNavigationOrder.ActivationOrder);ContentPane pane = contentPanes.First();pane.Activate();
Let me know if you have any questions with this matter. Thank you.
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!