2021-05-16 16:29:37 +08:00
|
|
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
|
|
|
using MvvmCross.Platforms.Wpf.Views;
|
2021-05-08 18:52:59 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace ProxySuper.WPF.Views
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2021-05-14 19:07:19 +08:00
|
|
|
|
/// XrayEditorView.xaml 的交互逻辑
|
2021-05-08 18:52:59 +08:00
|
|
|
|
/// </summary>
|
2021-05-21 18:03:40 +08:00
|
|
|
|
[MvxWindowPresentation(Identifier = nameof(XrayEditorView), Modal = false)]
|
2021-05-14 19:07:19 +08:00
|
|
|
|
public partial class XrayEditorView : MvxWindow
|
2021-05-08 18:52:59 +08:00
|
|
|
|
{
|
2021-05-14 19:07:19 +08:00
|
|
|
|
public XrayEditorView()
|
2021-05-08 18:52:59 +08:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|