2025-07-19 11:11:01 +08:00
|
|
|
using DMS.WPF.ViewModels.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
|
|
|
|
|
2025-07-26 10:05:43 +08:00
|
|
|
namespace DMS.WPF.Views.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
|
|
|
|
|
public partial class MqttDialog : ContentDialog
|
|
|
|
|
{
|
2025-09-06 12:03:39 +08:00
|
|
|
public MqttDialog()
|
2025-07-04 22:39:44 +08:00
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2025-09-06 12:03:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MqttDialog(MqttDialogViewModel viewModel) : this()
|
|
|
|
|
{
|
2025-07-04 22:39:44 +08:00
|
|
|
DataContext = viewModel;
|
|
|
|
|
}
|
|
|
|
|
}
|