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