26 lines
602 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|