1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 13:46:08 +03:00
ProxySU/ProxySuper.WPF/Views/TrojanGo/TrojanGoEditorView.xaml.cs

18 lines
455 B
C#
Raw Normal View History

2021-05-16 11:29:37 +03:00
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
using MvvmCross.Platforms.Wpf.Views;
namespace ProxySuper.WPF.Views
{
/// <summary>
/// TrojanEditorView.xaml 的交互逻辑
/// </summary>
2021-05-24 13:57:17 +03:00
[MvxWindowPresentation(Identifier = nameof(TrojanGoEditorView), Modal = false)]
2021-05-16 11:29:37 +03:00
public partial class TrojanGoEditorView : MvxWindow
{
public TrojanGoEditorView()
{
InitializeComponent();
}
}
}