2025-07-04 22:39:44 +08:00
|
|
|
using System.Windows.Controls;
|
2025-07-18 19:56:00 +08:00
|
|
|
using DMS.ViewModels.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
|
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
namespace DMS.Views.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
using DMS.ViewModels.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
|
|
|
|
|
public partial class MqttDialog : ContentDialog
|
|
|
|
|
{
|
|
|
|
|
public MqttDialog(MqttDialogViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
DataContext = viewModel;
|
|
|
|
|
}
|
|
|
|
|
}
|