Files
wcs/货架标准上位机/App.xaml.cs
hehaibing-1996 be07ee60ee 2
2025-01-08 16:18:23 +08:00

28 lines
602 B
C#

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Management.Instrumentation;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace
{
/// <summary>
/// App.xaml 的交互逻辑
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
MainWindow = new MainWindow1();
MainWindow.ShowDialog();
}
}
}