mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-21 20:56:08 +03:00
18 lines
369 B
C#
18 lines
369 B
C#
using MvvmCross.Core;
|
|
using MvvmCross.Platforms.Wpf.Core;
|
|
using MvvmCross.Platforms.Wpf.Views;
|
|
|
|
namespace ProxySuper.WPF
|
|
{
|
|
/// <summary>
|
|
/// App.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class App : MvxApplication
|
|
{
|
|
protected override void RegisterSetup()
|
|
{
|
|
this.RegisterSetupType<Setup>();
|
|
}
|
|
}
|
|
}
|