1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-26 15:16:08 +03:00
ProxySU/ProxySU_Core/Views/ClientInfo/ClientInfoWindow.xaml.cs

41 lines
1.0 KiB
C#
Raw Normal View History

2021-04-19 11:51:43 +03:00
using Microsoft.Win32;
using ProxySU_Core.Models;
2021-03-09 12:52:09 +03:00
using ProxySU_Core.ViewModels;
2021-04-19 07:12:23 +03:00
using QRCoder;
2021-03-06 12:26:17 +03:00
using System;
using System.Collections.Generic;
2021-04-19 07:12:23 +03:00
using System.Drawing;
using System.IO;
2021-03-06 12:26:17 +03:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
2021-05-22 06:12:26 +03:00
namespace ProxySuper.WPF.Controls
2021-03-06 12:26:17 +03:00
{
/// <summary>
/// ClientInfoWindow.xaml 的交互逻辑
/// </summary>
public partial class ClientInfoWindow
{
2021-03-09 12:52:09 +03:00
public XraySettingsViewModel Settings { get; set; }
2021-03-06 12:26:17 +03:00
public ClientInfoWindow(Record record)
{
InitializeComponent();
2021-03-10 05:50:34 +03:00
ResizeMode = ResizeMode.NoResize;
WindowStartupLocation = WindowStartupLocation.CenterScreen;
2021-03-06 12:26:17 +03:00
2021-03-09 12:52:09 +03:00
Settings = new XraySettingsViewModel(record.Settings);
DataContext = this;
2021-03-06 12:26:17 +03:00
}
}
}