You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
using SunlightCentralizedControlManagement_SCCM_.ViewModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace SunlightCentralizedControlManagement_SCCM_.View
|
|
{
|
|
/// <summary>
|
|
/// CurveDiagram.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class CurveDiagram : UserControl
|
|
{
|
|
public static string Curve;
|
|
public static string starT;
|
|
public static string endT;
|
|
public static string mac;
|
|
public static bool mode;
|
|
//搜索方式0时间加机台1工单 ,机台,开始时间,结束时间,工单
|
|
public CurveDiagram(bool i,string m,string s,string e,string w)
|
|
{
|
|
InitializeComponent();
|
|
mode = i;
|
|
starT = s;
|
|
endT = e;
|
|
mac = m;
|
|
Curve = w;
|
|
DataContext = new CurveDiagramViewModel();
|
|
}
|
|
}
|
|
}
|
|
|