2025-07-18 19:56:00 +08:00
|
|
|
using DMS.ViewModels.Dialogs;
|
2025-07-17 10:43:33 +08:00
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
|
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
namespace DMS.Views.Dialogs;
|
2025-07-17 10:43:33 +08:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ImportResultDialog.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class ImportResultDialog : ContentDialog
|
|
|
|
|
{
|
|
|
|
|
public ImportResultDialog()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ImportResultDialog(ImportResultDialogViewModel viewModel) : this()
|
|
|
|
|
{
|
|
|
|
|
DataContext = viewModel;
|
|
|
|
|
}
|
|
|
|
|
}
|