1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 05:06:08 +03:00
ProxySU/ProxySuper.WPF/Controls/HostControl.xaml.cs

16 lines
298 B
C#
Raw Normal View History

2021-07-08 13:37:32 +03:00
using System.Windows.Controls;
2021-05-08 13:52:59 +03:00
2021-05-14 14:07:19 +03:00
namespace ProxySuper.WPF.Controls
2021-05-08 13:52:59 +03:00
{
/// <summary>
2021-05-14 14:07:19 +03:00
/// HostControl.xaml 的交互逻辑
2021-05-08 13:52:59 +03:00
/// </summary>
2021-05-14 14:07:19 +03:00
public partial class HostControl : UserControl
2021-05-08 13:52:59 +03:00
{
2021-05-14 14:07:19 +03:00
public HostControl()
2021-05-08 13:52:59 +03:00
{
InitializeComponent();
}
}
}