common/ProductionUiCordonel/App.xaml.cs
2026-04-23 17:50:07 +02:00

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();
}
}
}
}