29 lines
609 B
C#
29 lines
609 B
C#
using System;
|
|
using System.Windows;
|
|
|
|
namespace ProductionUiCordonelLegacy
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
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();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|