AUCMA_SCADA/Aucma.Scada.UI/Page/OutStoreInfo/OutStoreInfoControl.xaml.cs

21 lines
519 B
C#

using Aucma.Scada.UI.ViewModel.OutStoreInfo;
using System.Windows.Controls;
namespace Aucma.Scada.UI.Page.OutStoreInfo
{
/// <summary>
/// OutStoreInfoControl.xaml 的交互逻辑
/// </summary>
public partial class OutStoreInfoControl : UserControl
{
public OutStoreInfoControl()
{
InitializeComponent();
OutStoreInfoViewModel outStoreInfoViewModel = new OutStoreInfoViewModel();
this.DataContext = outStoreInfoViewModel;
}
}
}