Files
DMS/DMS.WPF/Views/Dialogs/PollLevelDialog.xaml.cs

15 lines
336 B
C#
Raw Normal View History

2025-07-19 11:11:01 +08:00
using DMS.WPF.ViewModels.Dialogs;
using iNKORE.UI.WPF.Modern.Controls;
2025-07-26 10:05:43 +08:00
namespace DMS.WPF.Views.Dialogs
{
public partial class PollLevelDialog : ContentDialog
{
public PollLevelDialog(PollLevelDialogViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}
}