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