1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-16 22:53:13 +03:00
ProxySU/ProxySuper.WPF/App.xaml.cs

18 lines
369 B
C#
Raw Normal View History

2021-07-08 18:37:32 +08:00
using MvvmCross.Core;
2021-05-08 18:52:59 +08:00
using MvvmCross.Platforms.Wpf.Core;
2021-07-08 18:37:32 +08:00
using MvvmCross.Platforms.Wpf.Views;
2021-05-08 18:52:59 +08:00
namespace ProxySuper.WPF
{
/// <summary>
/// App.xaml 的交互逻辑
/// </summary>
public partial class App : MvxApplication
{
protected override void RegisterSetup()
{
2022-11-20 23:00:16 +08:00
this.RegisterSetupType<Setup>();
2021-05-08 18:52:59 +08:00
}
}
}