Hello,
My initial App.xaml file lists:
<Application x:Class="IcebergMain.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindowShell.xaml">
In my MainWindowShell's Loaded method I perform some user authentication. While it is doing this, the Window's empty frame is displayed and then everything is fully displayed after the Loaded method is completed. I need to find a way to NOT have
this Window frame visible until the authentication is verified. If authentication fails, I propmpt the user and then call this.close. I get the behavior I want if I do the authentication in the constructor but I don't want to do that since I only
want the defaulted InitializeComponent method to be called there. The things I have tried include:
1) Set the window's visibility to hidden in the xaml file with the thought of making it visible after the authentication completes in the Loaded method. The problem I am seeing here is that the Loaded method does not even get called if the visibility
is set to hidden.
2) I don't use a StartupUri in the App.xaml file and instead try to create an instance of the window in the App.xaml.cs's constructor. While that launches the Window, the Application.Resources defined in the App.xaml are not used and there are exceptions
when I close the Window (even though I tried to set the ShutDownMode in the App.xaml.cs class.
3) Tried to set the Window's visibility to hidden at the beginning of the Loaded method with thoughts of resetting it to Visible later but it never did get hidden.
Any thoughts on how to do this in the proper manner would be appreciated. Thanks - Peter Len