mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
25 lines
551 B
C#
25 lines
551 B
C#
|
using MvvmCross.Platforms.Wpf.Views;
|
|||
|
using MvvmCross.Platforms.Wpf.Core;
|
|||
|
using MvvmCross.Core;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Configuration;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows;
|
|||
|
|
|||
|
namespace ProxySuper.WPF
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// App.xaml 的交互逻辑
|
|||
|
/// </summary>
|
|||
|
public partial class App : MvxApplication
|
|||
|
{
|
|||
|
protected override void RegisterSetup()
|
|||
|
{
|
|||
|
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|