Files
PackagingMallShipper/PackagingMallShipper/App.xaml.cs
2025-12-17 13:56:00 +08:00

26 lines
602 B
C#

using System;
using System.Windows;
using PackagingMallShipper.Data;
namespace PackagingMallShipper
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
try
{
SqliteHelper.Initialize();
}
catch (Exception ex)
{
MessageBox.Show($"数据库初始化失败: {ex.Message}", "错误",
MessageBoxButton.OK, MessageBoxImage.Error);
Shutdown(1);
}
}
}
}