Hi,
I am using TabGroupPaneRegionAdapter from Infragistics. I don't know if I am doing something in correct. The problem that I am having is once the contentpane is closed from the TabGroupPan. I can no longer start it again.
I am using MEF. The way I originally opened the view is through RequestNavigate API.
Uri viewNav = new Uri("View1", UriKind.Relative);
regionManager.RequestNavigate(
RegionNames.WorkspaceRegion, viewNav);
and the other thing I noticed is, as soon as contentPane is closed
OnViewsCollectionChanged is not invoked.
I'll be grateful for your timely help.
Thanks,
Imad.
I'm not sure what region adapter you are referring to. The only one that we have provided is part of the NCAL on codeplex. A guess as to what is happening in your case is that since the default CloseAction is HidePane, the Visibility of the pane is set to Collapsed when it is closed - it isn't removed so trying to readd it or activate it probably isn't handling that. Maybe you would set the CloseAction to RemovePane.