cd50996311
1.支持自动选择实验性模式的系统版本,并且弹出提示对话框 2.支持通过控制台参数启动(使用--help可以查看详情) 3.While循环内判断逻辑改用比较器,使运行效率提升 4.支持隐藏运行模式(--hide) 5.支持自动激活模式(--auto) 6.程序集改为嵌入式资源静态加载 7.旧版自解压临时目录改为独立临时工作区 Google Translate : 1. Support system edition of automatic selection of experimental mode, and a prompt dialog box pops up. 2. Support to start through the console parameters (use --help to see details) 3. The decision logic in the While Loop uses a comparator to improve the operating efficiency. 4. Support hidden operation mode (--hide). 5. Support automatic activation mode (--auto) 6. Assembly to embedded resources static loading. 7. The old version of the self-extracting temporary directory was changed to a separate temporary workspace.
18 lines
1.1 KiB
XML
18 lines
1.1 KiB
XML
<Application x:Class="CMWTAT_DIGITAL.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:CMWTAT_KMS"
|
|
StartupUri="MainWindow.xaml"
|
|
>
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Dark.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Pink.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|