apologies, really new C# learner. my application will have these windows:
- a main display window
- an option panel to change what’s on the display window
how can I make it so that when the application starts, both of these windows open, and how would I go about making user decisions in the options window affect display in the main window?
Thanks!
Inside the
OnStartupmethod ofApp.xaml.cs, add the following:and the main window will be displayed by default since it is defined as the start window in your
App.xamlpropertyStartupUri="MainWindow.xaml"