using System; using System.Windows; namespace ProductionUiCordonelLegacy { /// /// Interaction logic for App.xaml /// public partial class App : Application { private void Application_Startup(Object sender, StartupEventArgs e) { if (true) { FinalRadioTest mainWindow = new FinalRadioTest(); mainWindow.Show(); } else { MultiMode otherWindow = new MultiMode(); otherWindow.Show(); } } } }