I am trying to create my own PageView.
I have inherited from PageView and only altered a view items. My new view is similiar to the ThreePanelView but it is for a PageView.
When I run the app the PageView is not the new PageView.
I have registered the View in the Module controller class:
mViewFactoryService.RegisterViewType<WelcomePageView>(LOC.CEMS.Welcome.Constants.ViewNames.WelcomePage);
In my module controller I have the following for showing the page: StartPageController.ShowPage(WorkItem, ViewNames.WelcomePage, this.Workspace);
StartPageController inherits from WelcomePageController.
But it shows the orginal SummaryPageView.
What am I doing wrong?