|
|
|
|
using Aucma.Scada.UI.ViewModel.InventoryInfo;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Scada.UI.Page.InventoryInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SpaceDetailWindow.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class SpaceDetailWindow : Window
|
|
|
|
|
{
|
|
|
|
|
public SpaceDetailWindow(string storeCode, string spaceCode)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
SpaceDetailViewModel spaceDetailViewModel = new SpaceDetailViewModel(storeCode, spaceCode);
|
|
|
|
|
this.DataContext = spaceDetailViewModel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|