PgGageInfo.xaml.cs 20.4 KB
Newer Older
1 2 3
using FLY.Thick.Base.Client;
using FLY.Thick.Base.IService;
using FObjBase;
潘栩锋's avatar
潘栩锋 committed
4
using System;
潘栩锋's avatar
潘栩锋 committed
5
using System.Collections.Generic;
潘栩锋's avatar
潘栩锋 committed
6
using System.ComponentModel;
潘栩锋's avatar
潘栩锋 committed
7
using System.Linq;
8
using System.Net;
潘栩锋's avatar
潘栩锋 committed
9 10
using System.Windows;
using System.Windows.Controls;
11
using Unity;
潘栩锋's avatar
潘栩锋 committed
12

潘栩锋's avatar
潘栩锋 committed
13
namespace FLY.Thick.Base.UI
潘栩锋's avatar
潘栩锋 committed
14 15 16 17
{
    /// <summary>
    /// Page_GageInfo.xaml 的交互逻辑
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
18
    public partial class PgGageInfo : Page
潘栩锋's avatar
潘栩锋 committed
19 20 21 22 23
    {
        #region 延时推送 MARKNO
        const int MARKNO_UPDATE = 1;
        #endregion

潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37

        public class SeriesInfo : INotifyPropertyChanged
        {
            public string Name { get; set; }
            //public Brush Color { get; set; }

            public List<int> Datas = new List<int>();

            public DateTime UpdateTime = DateTime.MaxValue;

            public event PropertyChangedEventHandler PropertyChanged;
        }
        public SeriesInfo[] SeriesInfos { get; set; }

38 39 40
        IGageInfoService gageInfo = null;
        IGetSampleService getSample = null;
        IBorderSearchService borderSearch = null;
潘栩锋's avatar
潘栩锋 committed
41
        ITDGageService gageService = null;
42
        IUnityContainer container;
潘栩锋's avatar
潘栩锋 committed
43
        public PgGageInfo()
潘栩锋's avatar
潘栩锋 committed
44 45 46 47
        {
            InitializeComponent();
            InitializeComponent2();
        }
48 49 50 51 52
        [InjectionMethod]
        public void Init(
            IUnityContainer container,
            IGageInfoService gageInfoService,
            IGetSampleService getSample,
53
            IBorderSearchService borderSearch,
潘栩锋's avatar
潘栩锋 committed
54
            ITDGageService gageService
55
            )
潘栩锋's avatar
潘栩锋 committed
56
        {
57 58 59
            this.gageInfo = gageInfoService;
            this.getSample = getSample;
            this.borderSearch = borderSearch;
潘栩锋's avatar
潘栩锋 committed
60
            this.gageService = gageService;
61
            this.container = container;
潘栩锋's avatar
潘栩锋 committed
62
            container.BuildUp(mircoGage);
潘栩锋's avatar
潘栩锋 committed
63 64 65 66 67 68 69 70 71 72


            SeriesInfos = new SeriesInfo[2] {
                new SeriesInfo(){
                    Name = "正向"
                },
                new SeriesInfo(){
                    Name = "反向"
                }
            };
潘栩锋's avatar
潘栩锋 committed
73 74 75
        }
        private void Page_Loaded(object sender, RoutedEventArgs e1)
        {
76
            this.DataContext = gageInfo;
潘栩锋's avatar
潘栩锋 committed
77

78
            gageInfo.PropertyChanged += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
79
            {
潘栩锋's avatar
潘栩锋 committed
80 81 82 83 84 85 86 87 88 89 90
                if (e.PropertyName == nameof(gageInfo.UpdateTimes)) {
                    //下载数据
                    for (int i = 0; i < SeriesInfos.Count(); i++) {
                        var seriesInfo = SeriesInfos[i];
                        if (gageInfo.UpdateTimes != null && gageInfo.UpdateTimes.Count() > i) {
                            if (seriesInfo.UpdateTime != gageInfo.UpdateTimes[i]) {
                                gageInfo.GetGageInfo(i, (asyncContext, retData) =>
                                {
                                    var reponse = retData as GetGageInfoResponse;
                                    int index = (int)asyncContext;
                                    SeriesInfos[index].Datas.Clear();
潘栩锋's avatar
潘栩锋 committed
91 92 93 94
                                    if (reponse.Data != null)
                                    {
                                        SeriesInfos[index].Datas.AddRange(reponse.Data);
                                    }
潘栩锋's avatar
潘栩锋 committed
95 96 97 98 99 100 101
                                    SeriesInfos[index].UpdateTime = reponse.UpdateTime;

                                    DataBindAll();
                                }, i);
                            }
                        }
                    }
潘栩锋's avatar
潘栩锋 committed
102 103
                }
            };
104
            getSample.PropertyChanged += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
105
            {
106
                if (e.PropertyName == nameof(getSample.Enable))
潘栩锋's avatar
潘栩锋 committed
107 108 109 110 111
                {
                    update();
                }
            };

112
            for (int i = 0; i < getSample.Samples.Count(); i++)
潘栩锋's avatar
潘栩锋 committed
113
            {
114
                getSample.Samples[i].PropertyChanged += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
115
                {
116 117 118
                    if ((e.PropertyName == nameof(SampleCell.Enable)) ||
                        (e.PropertyName == nameof(SampleCell.Position)) ||
                        (e.PropertyName == nameof(SampleCell.OrgAD)))
119 120 121
                    {
                        update();
                    }
潘栩锋's avatar
潘栩锋 committed
122 123
                };
            }
124
            for (int i = 0; i < getSample.Features.Count(); i++)
潘栩锋's avatar
潘栩锋 committed
125
            {
126
                getSample.Features[i].PropertyChanged += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
127
                {
128 129 130
                    if ((e.PropertyName == nameof(SampleFeature.Enable)) ||
                        (e.PropertyName == nameof(SampleFeature.StartPos)) ||
                        (e.PropertyName == nameof(SampleFeature.EndPos)))
潘栩锋's avatar
潘栩锋 committed
131 132 133 134 135 136
                    {
                        update();
                    }
                };
            }

137
            borderSearch.PropertyChanged += (s, e) =>
潘栩锋's avatar
潘栩锋 committed
138
            {
139
                if (e.PropertyName == nameof(borderSearch.Enable))
潘栩锋's avatar
潘栩锋 committed
140 141 142
                {
                    update();
                }
143 144 145 146
                else if (e.PropertyName == nameof(borderSearch.Valid)) 
                {
                    update();
                }
潘栩锋's avatar
潘栩锋 committed
147
            };
潘栩锋's avatar
潘栩锋 committed
148

潘栩锋's avatar
潘栩锋 committed
149 150
            DownloadAll();
            //DataBindAll();
潘栩锋's avatar
潘栩锋 committed
151
            update();
潘栩锋's avatar
潘栩锋 committed
152 153
        }

潘栩锋's avatar
潘栩锋 committed
154 155 156 157 158 159 160 161 162 163 164
        void DownloadAll() {
            //下载数据
            for (int i = 0; i < SeriesInfos.Count(); i++)
            {
                var seriesInfo = SeriesInfos[i];

                gageInfo.GetGageInfo(i, (asyncContext, retData) =>
                {
                    var reponse = retData as GetGageInfoResponse;
                    int index = (int)asyncContext;
                    SeriesInfos[index].Datas.Clear();
潘栩锋's avatar
潘栩锋 committed
165 166 167 168
                    if (reponse.Data != null)
                    {
                        SeriesInfos[index].Datas.AddRange(reponse.Data);
                    }
潘栩锋's avatar
潘栩锋 committed
169 170 171 172 173 174
                    SeriesInfos[index].UpdateTime = reponse.UpdateTime;

                    DataBindAll();
                }, i);
            }
        }
潘栩锋's avatar
潘栩锋 committed
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
        void InitializeComponent2()
        {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();//样品
            // 
            // chart1
            // 
            chart1.BackColor = System.Drawing.Color.Transparent;

            chartArea1.Area3DStyle.Inclination = 15;
            chartArea1.Area3DStyle.IsClustered = true;
            chartArea1.Area3DStyle.IsRightAngleAxes = false;
            chartArea1.Area3DStyle.Perspective = 10;
            chartArea1.Area3DStyle.Rotation = 10;
            chartArea1.Area3DStyle.WallWidth = 0;
            chartArea1.AxisX.IsLabelAutoFit = false;
            chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisX.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisX.ScrollBar.BackColor = System.Drawing.Color.AliceBlue;
            chartArea1.AxisX.ScrollBar.ButtonColor = System.Drawing.SystemColors.Control;
            chartArea1.AxisX.ScrollBar.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            chartArea1.AxisY.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.AxisY.ScrollBar.BackColor = System.Drawing.Color.AliceBlue;
            chartArea1.AxisY.ScrollBar.ButtonColor = System.Drawing.SystemColors.Control;
            chartArea1.AxisY.ScrollBar.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
            chartArea1.BackGradientStyle = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
            chartArea1.BackSecondaryColor = System.Drawing.Color.White;
            chartArea1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            chartArea1.CursorX.IsUserEnabled = true;
            chartArea1.CursorX.IsUserSelectionEnabled = true;
            chartArea1.CursorX.SelectionColor = System.Drawing.SystemColors.Highlight;
            chartArea1.CursorY.IsUserEnabled = true;
            chartArea1.CursorY.IsUserSelectionEnabled = true;
            chartArea1.CursorY.SelectionColor = System.Drawing.SystemColors.Highlight;
            chartArea1.InnerPlotPosition.Auto = false;
            chartArea1.InnerPlotPosition.Height = 75F;
            chartArea1.InnerPlotPosition.Width = 86.32634F;
            chartArea1.InnerPlotPosition.X = 11.21863F;
            chartArea1.InnerPlotPosition.Y = 3.96004F;
            chartArea1.Name = "Default";
            chartArea1.Position.Auto = false;// true;
            chartArea1.Position.Height = 100;//
            chartArea1.Position.Width = 100;// 81.46518F;
            chartArea1.Position.X = 0;// 9.267409F;
            chartArea1.Position.Y = 0;// 10F;

            chartArea1.ShadowColor = System.Drawing.Color.Transparent;
            chart1.ChartAreas.Add(chartArea1);
            legend1.BackColor = System.Drawing.Color.Transparent;
            legend1.Enabled = true;
            legend1.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
            legend1.IsTextAutoFit = false;
            legend1.Name = "Default";
            chart1.Legends.Add(legend1);
            //chart1.Location = new System.Drawing.Point(16, 48);
            chart1.Name = "chart1";


            //series1
            series1.BorderColor = System.Drawing.Color.DarkBlue;
            series1.BorderWidth = 3;

            series1.ChartArea = chartArea1.Name;
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series1.Color = System.Drawing.Color.Blue;// System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));

            series1.Legend = legend1.Name;
            series1.Name = "正向";
            //series1.MarkerSize = 6;
            //series1.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            try
            {
                series1.LegendText = Application.Current.FindResource("strForward") as string;
            }
256 257
            catch
            {
潘栩锋's avatar
潘栩锋 committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
            }
            series1.ShadowColor = System.Drawing.Color.Black;
            series1.ShadowOffset = 2;
            //series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            //series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            chart1.Series.Add(series1);


            //series2
            series2.BorderColor = System.Drawing.Color.DarkRed;
            series2.BorderWidth = 3;

            series2.ChartArea = chartArea1.Name;
            series2.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            series2.Color = System.Drawing.Color.Red; //System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));

            series2.Legend = legend1.Name;
            //series2.MarkerSize = 6;
            //series2.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series2.Name = "反向";
            try
            {
                series2.LegendText = Application.Current.FindResource("strBackward") as string;
            }
            catch
            {
            }
            series2.ShadowColor = System.Drawing.Color.Black;
            series2.ShadowOffset = 2;
            //series2.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            //series2.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;

            chart1.Series.Add(series2);

            //series3
            series3.Name = "样品";
            try
            {
                series3.LegendText = Application.Current.FindResource("strSample") as string;
            }
            catch
            {
            }
            series3.ChartArea = chartArea1.Name;
            series3.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Point;
            series3.Color = System.Drawing.Color.Green;
            series3.BorderColor = System.Drawing.Color.DarkGreen;
            series3.BorderWidth = 3;

            series3.MarkerSize = 6;
            series3.MarkerStyle = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
            series3.MarkerBorderColor = System.Drawing.Color.DarkGreen;
            series3.MarkerColor = System.Drawing.Color.Green;

            series3.ShadowColor = System.Drawing.Color.Black;
            series3.ShadowOffset = 2;
            //series3.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Int32;
            //series3.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;

            series3.Legend = legend1.Name;

            chart1.Series.Add(series3);
        }

潘栩锋's avatar
潘栩锋 committed
322

潘栩锋's avatar
潘栩锋 committed
323 324 325
        void DataBindAll()
        {
            string[] series = new string[2] { "正向", "反向" };
潘栩锋's avatar
潘栩锋 committed
326
            
327
            if (gageInfo.PosOfGrid == 0)
潘栩锋's avatar
潘栩锋 committed
328
                return;
329
            int grid_len = gageInfo.PosLen / gageInfo.PosOfGrid;
潘栩锋's avatar
潘栩锋 committed
330 331 332 333
            int max = Misc.MyBase.NULL_VALUE, min = Misc.MyBase.NULL_VALUE;
            for (int j = 0; j < 2; j++)
            {
                chart1.Series[j].Points.Clear();
潘栩锋's avatar
潘栩锋 committed
334
                if (SeriesInfos[j].Datas.Count()==0)
335
                    continue;
潘栩锋's avatar
潘栩锋 committed
336
                for (int i = 0; i < grid_len && i< SeriesInfos[j].Datas.Count(); i++)
潘栩锋's avatar
潘栩锋 committed
337
                {
潘栩锋's avatar
潘栩锋 committed
338
                    int data = SeriesInfos[j].Datas[i];
339
                    int pos = i * gageInfo.PosOfGrid;
潘栩锋's avatar
潘栩锋 committed
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369

                    chart1.Series[j].Points.AddXY(pos, data);

                    if (!Misc.MyBase.ISVALIDATA(data))
                    {
                        chart1.Series[j].Points[i].IsEmpty = true;
                    }
                    else
                    {
                        if (!Misc.MyBase.ISVALIDATA(max))
                        {
                            max = data;
                            min = data;
                        }
                        if (max < data)
                            max = data;
                        if (min > data)
                            min = data;
                    }
                }
            }
            //set max min
            //set max min
            if (max != min)
            {
                chart1.ChartAreas[0].AxisY.Maximum = max + (max - min) / 10;
                chart1.ChartAreas[0].AxisY.Minimum = min - (max - min) / 10;
                if (chart1.ChartAreas[0].AxisY.Minimum < 0)
                    chart1.ChartAreas[0].AxisY.Minimum = 0;

潘栩锋's avatar
潘栩锋 committed
370 371
                if (chart1.ChartAreas[0].AxisY.Maximum > gageService.DynArea.ADMax)
                    chart1.ChartAreas[0].AxisY.Maximum = gageService.DynArea.ADMax;
潘栩锋's avatar
潘栩锋 committed
372 373
            }
            chart1.ChartAreas[0].AxisX.Minimum = 0;
374
            chart1.ChartAreas[0].AxisX.Maximum = gageInfo.PosLen;
潘栩锋's avatar
潘栩锋 committed
375
        }
376
        void update()
潘栩锋's avatar
潘栩锋 committed
377 378
        {
            FObjBase.PollModule.Current.Poll_JustOnce(
379
                new PollModule.PollHandler(delegate ()
潘栩锋's avatar
潘栩锋 committed
380 381 382 383 384 385 386 387 388 389 390 391 392
                {
                    System.Windows.Forms.DataVisualization.Charting.StripLinesCollection stripLines = chart1.ChartAreas[0].AxisX.StripLines;
                    stripLines.Clear();
                    mBorderSearchService_update();
                    mGetSampleService_update();
                }), this, MARKNO_UPDATE);


        }
        void mBorderSearchService_update()
        {
            System.Windows.Forms.DataVisualization.Charting.StripLinesCollection stripLines = chart1.ChartAreas[0].AxisX.StripLines;

393
            if (borderSearch.Enable)
潘栩锋's avatar
潘栩锋 committed
394 395 396 397
            {
                System.Windows.Forms.DataVisualization.Charting.StripLine stripline = new System.Windows.Forms.DataVisualization.Charting.StripLine();
                stripline.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))));
                stripline.Interval = 0;
398 399
                stripline.IntervalOffset = borderSearch.Valid.Begin;
                stripline.StripWidth = borderSearch.Valid.Width;
潘栩锋's avatar
潘栩锋 committed
400 401 402 403 404 405 406 407 408 409 410 411 412
                stripLines.Add(stripline);
            }
        }
        void mGetSampleService_update()
        {
            System.Windows.Forms.DataVisualization.Charting.StripLinesCollection stripLines = chart1.ChartAreas[0].AxisX.StripLines;
            //stripLines.Clear();

            System.Windows.Forms.DataVisualization.Charting.Series series = chart1.Series["样品"];
            series.Points.Clear();



413
            if (!getSample.Enable)
潘栩锋's avatar
潘栩锋 committed
414 415
                return;

416
            for (int i = 0; i < getSample.Samples.Count(); i++)
潘栩锋's avatar
潘栩锋 committed
417
            {
418 419
                var sample = getSample.Samples[i];
                if (sample.Enable)
潘栩锋's avatar
潘栩锋 committed
420 421 422 423 424 425 426
                {
                    int data = sample.OrgAD;
                    int pos = sample.Position;
                    series.Points.AddXY(pos, data);
                }
            }

427
            for (int i = 0; i < getSample.Features.Count(); i++)
潘栩锋's avatar
潘栩锋 committed
428
            {
429
                var feature = getSample.Features[i];
潘栩锋's avatar
潘栩锋 committed
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
                if (feature.Enable)
                {
                    System.Windows.Forms.DataVisualization.Charting.StripLine stripline = new System.Windows.Forms.DataVisualization.Charting.StripLine();


                    if (i == 0)
                    {
                        try
                        {
                            stripline.Text = Application.Current.FindResource("strForwFeature") as string;
                        }
                        catch
                        {
                            stripline.Text = "正向特征";
                        }
                    }
                    else
                    {
                        try
                        {
                            stripline.Text = Application.Current.FindResource("strBackwFeature") as string;
                        }
                        catch
                        {
                            stripline.Text = "反向特征";
                        }
                    }
                    //stripline.TextAlignment = System.Drawing.StringAlignment.Near;
                    //stripline.TextLineAlignment = System.Drawing.StringAlignment.Near;
                    stripline.TextOrientation = System.Windows.Forms.DataVisualization.Charting.TextOrientation.Stacked;

                    stripline.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))));
                    stripline.Interval = 0;
                    stripline.IntervalOffset = feature.StartPos;
                    stripline.StripWidth = feature.EndPos - feature.StartPos + 1;
                    stripLines.Add(stripline);
                }
            }
        }
        void Page_Unloaded(object sender, RoutedEventArgs e)
        {
471

潘栩锋's avatar
潘栩锋 committed
472 473 474
        }
        void button_start_Click(object sender, RoutedEventArgs e)
        {
475 476
            if (gageInfo.IsRunning)
                gageInfo.Stop();
潘栩锋's avatar
潘栩锋 committed
477
            else
478 479 480 481 482 483 484
            {
                if (!WdPassword.Authorize("GageInfo"))
                    return;

                gageInfo.Start();
            }

潘栩锋's avatar
潘栩锋 committed
485 486 487
        }
    }
}