修复bug 删除单独保存代码
This commit is contained in:
25
Control/ConfigWindow.xaml.cs
Normal file
25
Control/ConfigWindow.xaml.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user