When running my program by clicking Run or pressing Ctrl + F5, is it possible to open different windows based on some check condition?
I.e if some condition is satisfied I wish to open a particular window, but if its not I want to open another window.
It should be like before opening any window it should first check for the condition like
if(File.Exists(<path-to-file>)
Open Window 1
else
Open Window 2
Is this possible?
look into App.xaml
remove
StartupUri="MainWindow.xaml"add
Startup="Application_Startup"new event Handlerform code behind App.xaml.cs create Application_Startup like…