1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-24 06:06:07 +03:00
ProxySU/ProxySuper.WPF/Views/TrojanGo/TrojanGoConfigView.xaml.cs

25 lines
536 B
C#
Raw Normal View History

2021-05-22 06:48:44 +03:00
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;
}
}
}
}