1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-25 06:36:08 +03:00
ProxySU/ProxySuper.WPF/App.xaml.cs

18 lines
385 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()
{
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
}
}
}