45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
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;
|
|
using DI_Electrical.ViewModels;
|
|
|
|
namespace DI_Electrical.Views
|
|
{
|
|
/// <summary>
|
|
/// Config.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class Config : Window
|
|
{
|
|
public Config(ConfigViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
viewModel.CloseWindowAction = this.Close; // 将关闭方法传递给 ViewModel
|
|
DataContext = viewModel;
|
|
}
|
|
private void RadFilePathPicker_FilePathChanged(object sender, Telerik.Windows.Controls.FileDialogs.FilePathChangedEventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(e.FilePath))
|
|
{
|
|
this.filepath.FilePath = "";
|
|
var x = DataContext as ConfigViewModel;
|
|
x.Directory = "";
|
|
}
|
|
else
|
|
{
|
|
var x = DataContext as ConfigViewModel;
|
|
x.Directory = e.FilePath;
|
|
}
|
|
}
|
|
}
|
|
}
|