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
385 B
C#
Raw Permalink 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()
{
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
}
}
}