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

37 lines
973 B
C#
Raw Normal View History

2021-03-06 12:26:17 +03:00
using ProxySU_Core.Models;
2021-03-09 12:52:09 +03:00
using ProxySU_Core.ViewModels;
2021-03-06 12:26:17 +03:00
using System;
using System.Collections.Generic;
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-04-17 06:50:31 +03:00
namespace ProxySU_Core.Views.ClientInfo
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
}
}
}