You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aucma.Scada/Aucma.Scada.UI/Page/AssemblyPlan/BindingPage.xaml.cs

21 lines
499 B
C#

5 months ago
using Aucma.Scada.UI.viewModel.AssemblyPlan;
using System.Windows.Controls;
namespace Aucma.Scada.UI.Page.AssemblyPlan
{
/// <summary>
/// AssemblyPlanControl.xaml 的交互逻辑
/// </summary>
public partial class BindingPage : UserControl
{
public BindingPage()
{
InitializeComponent();
BindingPageViewModel bindingPageViewModel = new BindingPageViewModel();
this.DataContext = bindingPageViewModel;
}
}
}