How to show the login screen before loading the actual shell in the Prism framework

In my application, first I want to show the login screen, if the login is successful only then I want to show what is called Shell.

How would you structure a simple application that first authenticates the user through some login screen and then opens the main window, which acts as a container for the further module?

+3
source share
2 answers

http://compositewpf.codeplex.com/Thread/View.aspx?ThreadId=29570

Found the answer in the topic above. We need to do this in the CreateShell method for the loader.

+1
source

Source: https://habr.com/ru/post/1765488/


All Articles