using System; using System.Collections.Generic; using System.Linq; using System.Text; 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.Shapes; using FLY.Simulation.Coating; namespace FLYAD7_Simulation_Wpf { /// <summary> /// WindowCoating.xaml 的交互逻辑 /// </summary> public partial class WindowHeaderAndTailer : Window { FLY.Simulation.HeaderAndTailer.GageAD gageAD; List<double> mTrendData=new List<double>();//1cm 一个数据 int FilmLength_cm=0; List<double> datas = new List<double>(); public WindowHeaderAndTailer() { InitializeComponent(); } public void Init(FLY.Simulation.HeaderAndTailer.GageAD gageAD) { this.gageAD = gageAD; this.DataContext = gageAD; } } }