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.
25 lines
636 B
C#
25 lines
636 B
C#
using Aucma.Core.PalletizCX1.ViewModels;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
|
|
namespace Aucma.Core.PalletizCX1.Views
|
|
{
|
|
/// <summary>
|
|
/// PlanPageView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class PalletizPageView : UserControl
|
|
{
|
|
PalletizPageViewModel model = new PalletizPageViewModel();
|
|
public PalletizPageView()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = model;
|
|
}
|
|
private void dataGrid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
{
|
|
model.MouseClick(sender);
|
|
}
|
|
|
|
}
|
|
}
|