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

18 lines
369 B
C#
Raw Normal View History

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