Files
GeekDesk/Control/ConfigWindow.xaml.cs

26 lines
571 B
C#
Raw Normal View History

2021-05-20 17:33:49 +08:00

using GalaSoft.MvvmLight.Command;
using GeekDesk.Control.UserControls;
using GeekDesk.ViewModel;
using HandyControl.Controls;
using HandyControl.Data;
using System;
namespace GeekDesk.Control
{
/// <summary>
/// ConfigDialog.xaml 的交互逻辑
/// </summary>
public partial class ConfigWindow
{
public ConfigWindow(AppConfig appConfig)
{
InitializeComponent();
this.DataContext = appConfig;
LeftCard.Content = new SettingControl();
this.Topmost = true;
}
}
}