mirror of
https://github.com/MaxiFan/TunnelX.git
synced 2026-05-19 08:04:41 +03:00
20 lines
444 B
C#
20 lines
444 B
C#
using System.Windows;
|
|
|
|
namespace AppTunnel.Views;
|
|
|
|
public partial class HelpWindow : Window
|
|
{
|
|
public HelpWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void OnCloseClick(object sender, RoutedEventArgs e) => Close();
|
|
|
|
private void OnTitleBarMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
|
|
{
|
|
if (e.ChangedButton == System.Windows.Input.MouseButton.Left)
|
|
DragMove();
|
|
}
|
|
}
|