2025-06-23 17:01:06 +08:00
|
|
|
using System.Windows.Controls;
|
2025-06-30 14:19:22 +08:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2025-06-23 17:01:06 +08:00
|
|
|
using PMSWPF.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Views;
|
|
|
|
|
|
|
|
|
|
public partial class VariableTableView : UserControl
|
|
|
|
|
{
|
2025-06-30 14:19:22 +08:00
|
|
|
public VariableTableView()
|
2025-06-23 17:01:06 +08:00
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2025-06-30 14:19:22 +08:00
|
|
|
DataContext = App.Current.Services.GetRequiredService<VariableTableViewModel>();
|
2025-06-23 17:01:06 +08:00
|
|
|
}
|
|
|
|
|
}
|