2025-07-18 19:56:00 +08:00
|
|
|
using DMS.ViewModels.Dialogs;
|
2025-07-06 15:15:38 +08:00
|
|
|
using iNKORE.UI.WPF.Modern.Controls;
|
|
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
namespace DMS.Views.Dialogs
|
2025-07-06 15:15:38 +08:00
|
|
|
{
|
|
|
|
|
public partial class PollLevelDialog : ContentDialog
|
|
|
|
|
{
|
|
|
|
|
public PollLevelDialog(PollLevelDialogViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
DataContext = viewModel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|