19 lines
437 B
C#
19 lines
437 B
C#
using Aucma.Scada.UI.ViewModel.AssemblyPlan;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Aucma.Scada.UI.Page.AssemblyPlan
|
|
{
|
|
/// <summary>
|
|
/// AssemblyPlanControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class AssemblyPlanControl : UserControl
|
|
{
|
|
public AssemblyPlanControl()
|
|
{
|
|
|
|
InitializeComponent();
|
|
this.DataContext = new AssemblyPlanViewModel();
|
|
}
|
|
}
|
|
}
|