PRISM Login Screen

2k Views Asked by At

I have searched and found a lot of questions and answers concerning login screens for prism. They seem to be concerned however with having the login screen show before prism even loads up modules. I have no desire for that.

I have my shell, and in the shell it has a grid with various containers that act as regions. This is how I want the program to look when my user is logged in.

Before I get to this screen, I want a connection module to take up the whole application window prompting for a user name, IP address and port with a connect button. The problem I'm finding is that there's no appropriate place it seems to navigate to this view that will allow me to take up the whole window. The only way I can think of to do this is to have a content control region in the grid that spans all of the rows and columns, which seems to somehow work in overlaying over the rest of the regions.

This seems sloppy however and surely there is a better approach than this. Should I have my shell only be a single contentcontrol where a main application controller first loads up the login module view, and then when it's connected it fires off an event that it's connected which allows the regular "shell" view to load in its place after the login view is unloaded and disposed of?

3

There are 3 best solutions below

0
On

Following the StockTrader sample app, you can configure your application to auto-export certain views. I do this with one of our applications. I export my "login view", which is populated by the AutoPopulateExportedViewsBehavior (found in the StockTrader app). Basically, my Shell has 1 region...and I populate that region with my login view. At the same time, MainPage is registered with the same region. I show the login view and then, when the login is successful, I request navigation to MainPage using the region manager.

0
On

Create a region in your Shell that holds views that need to expand over the whole window. Here's the idea:

Shell

    <Grid>
    <Grid >
        <Grid.RowDefinitions>
            ....
        </Grid.RowDefinitions>

        <!--ROW 1 -->               
        <!--ROW 2-->
    </Grid>
<!--****THIS IS THE REGION****-->
    <ContentControl x:Name="ShellExpandAllRegions" prism:RegionManager.RegionName="{x:Static staticRegions:RegionConstants.ShellExpandAllRegions}" Panel.ZIndex="100"/>
</Grid>

Register Your Module Initializer (IModule)

RegionManager.RegisterViewWithRegion(RegionConstants.ShellExpandAllRegions,typeof(LoginView));

Your ViewModel

RegionManager.RequestNavigate(RegionConstants.ShellExpandAllRegions, new Uri(typeof(LoginView).Name, UriKind.Relative)); // The handler for a login event

When your view loads in this region, it should take-up the whole window.

0
On

Create an event for logging in (assuming you've read up on EventAggregation). Then create a login module containing a view/viewmodel for the login dialog, create a class for the module itself and in the initialize method, Subscribe to the ShowLogin event and create the Login view. Then in the bootstrapper (or the shell), get the ShowLogin event and publish to it.