mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-24 06:06:07 +03:00
25 lines
536 B
C#
25 lines
536 B
C#
|
using MvvmCross.Platforms.Wpf.Views;
|
|||
|
using ProxySuper.Core.ViewModels;
|
|||
|
|
|||
|
namespace ProxySuper.WPF.Views
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// TrojanGoConfigView.xaml 的交互逻辑
|
|||
|
/// </summary>
|
|||
|
public partial class TrojanGoConfigView : MvxWindow
|
|||
|
{
|
|||
|
public TrojanGoConfigView()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
public new TrojanGoConfigViewModel ViewModel
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return (TrojanGoConfigViewModel)base.ViewModel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|