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.
31 lines
852 B
C#
31 lines
852 B
C#
using Aucma.Core.SheetMetal.Common;
|
|
using Aucma.Core.SheetMetal.ViewModels;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
|
|
namespace Aucma.Core.SheetMetal.Views
|
|
{
|
|
/// <summary>
|
|
/// CorrespondingModelPageView.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class CorrespondingModelPageView : Window
|
|
{
|
|
public CorrespondingModelPageView()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new CorrespondingModelPageViewModel();
|
|
}
|
|
public CorrespondingModelPageView(string productId)
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = new CorrespondingModelPageViewModel(productId);
|
|
}
|
|
|
|
private void queryParam_PreviewMouseDoubleClick(object sender, MouseButtonEventArgs e)
|
|
{
|
|
CommHelper.OpenOsk();
|
|
}
|
|
}
|
|
}
|