1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.WPF/Views/TrojanGo/TrojanGoConfigView.xaml.cs
2021-08-18 17:34:32 +08:00

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;
}
}
}
}