2025-09-14 19:13:40 +08:00
|
|
|
using System.Windows.Controls;
|
2025-09-23 06:51:29 +08:00
|
|
|
using DMS.WPF.ViewModels;
|
2025-09-14 19:13:40 +08:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
namespace DMS.WPF.Views
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// TriggersView.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class TriggersView : UserControl
|
|
|
|
|
{
|
|
|
|
|
public TriggersView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
DataContext = App.Current.Services.GetRequiredService<TriggersViewModel>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|