1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using Install.Core.Common;
using System.Windows;
using System.Windows.Navigation;
using Update.Core;
using Update.View;
namespace Update
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : NavigationWindow
{
InstallWizard installWizard;
public MainWindow()
{
InitializeComponent();
Ver ver = new Ver() { SrcType = this.GetType() };
this.Title = ver.ToString();
installWizard = new InstallWizard();
if (!installWizard.Init())
{
//异常,不能找到安装包
MessageBox.Show(installWizard.Msg, "异常", MessageBoxButton.OK, MessageBoxImage.Error);
App.Current.Shutdown();
return;
}
Application.Current.Properties[nameof(InstallWizard)] = installWizard;
Application.Current.Properties["NavigationService"] = NavigationService;
PgUpdate p = new PgUpdate();
p.Init();
NavigationService.Navigate(p);
}
}
}