FrmXRay.Designer.cs 55.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 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 256 257 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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 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 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 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 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
namespace OnlineStore.AutoCountClient
{
    partial class FrmXRay
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        #region Windows 窗体设计器生成的代码
         
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmXRay));
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.panel1 = new System.Windows.Forms.Panel();
            this.chbMoveStop = new System.Windows.Forms.CheckBox();
            this.lblName = new System.Windows.Forms.Label();
            this.chbDebug = new System.Windows.Forms.CheckBox();
            this.lblStoreStatus = new System.Windows.Forms.Label();
            this.btnStart = new System.Windows.Forms.Button();
            this.btnStop = new System.Windows.Forms.Button();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.X_Lock_On = new System.Windows.Forms.Button();
            this.X_StopCylinder_Down = new System.Windows.Forms.Button();
            this.X_StopCylinder_Up = new System.Windows.Forms.Button();
            this.X_OutDoor_Down = new System.Windows.Forms.Button();
            this.X_OutDoor_Up = new System.Windows.Forms.Button();
            this.X_InDoor_Down = new System.Windows.Forms.Button();
            this.btnCloseAll = new System.Windows.Forms.Button();
            this.X_MLine_Run = new System.Windows.Forms.Button();
            this.X_InLine_Run = new System.Windows.Forms.Button();
            this.X_InDoor_Up = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.txtDOIndex = new System.Windows.Forms.TextBox();
            this.txtDoName = new System.Windows.Forms.TextBox();
            this.label17 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.btnOpenDo = new System.Windows.Forms.Button();
            this.btnWriteSingleDO = new System.Windows.Forms.Button();
            this.txtWriteTime = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtSlaveId = new System.Windows.Forms.TextBox();
            this.cmbWriteIO = new System.Windows.Forms.ComboBox();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.groupBox8 = new System.Windows.Forms.GroupBox();
            this.btnSelImage = new System.Windows.Forms.Button();
            this.txtImage = new System.Windows.Forms.TextBox();
            this.numWSize = new System.Windows.Forms.NumericUpDown();
            this.label3 = new System.Windows.Forms.Label();
            this.numTh = new System.Windows.Forms.NumericUpDown();
            this.btnSaveTh = new System.Windows.Forms.Button();
            this.txtResult = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.btnWorkTest = new System.Windows.Forms.Button();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.btnImage = new System.Windows.Forms.Button();
            this.btnXStart = new System.Windows.Forms.Button();
            this.btnXStop = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.lblXrOpen = new System.Windows.Forms.Label();
            this.lblLastS = new System.Windows.Forms.Label();
            this.lblData = new System.Windows.Forms.Label();
            this.lblCom = new System.Windows.Forms.Label();
            this.lblDiany = new System.Windows.Forms.Label();
            this.lblDianl = new System.Windows.Forms.Label();
            this.lblInoutInfo = new System.Windows.Forms.Label();
            this.lblMoveInfo = new System.Windows.Forms.Label();
            this.lblThisSta = new System.Windows.Forms.Label();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.fileSystemWatcher1 = new System.IO.FileSystemWatcher();
            this.panel1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.groupBox8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numWSize)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numTh)).BeginInit();
            this.groupBox7.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.tabControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
            this.SuspendLayout();
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel1.Controls.Add(this.chbMoveStop);
            this.panel1.Controls.Add(this.lblName);
            this.panel1.Controls.Add(this.chbDebug);
            this.panel1.Controls.Add(this.lblStoreStatus);
            this.panel1.Controls.Add(this.btnStart);
            this.panel1.Controls.Add(this.btnStop);
            this.panel1.Location = new System.Drawing.Point(2, 1);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1326, 47);
            this.panel1.TabIndex = 258;
            // 
            // chbMoveStop
            // 
            this.chbMoveStop.AutoSize = true;
            this.chbMoveStop.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbMoveStop.Location = new System.Drawing.Point(636, 12);
            this.chbMoveStop.Name = "chbMoveStop";
            this.chbMoveStop.Size = new System.Drawing.Size(84, 24);
            this.chbMoveStop.TabIndex = 261;
            this.chbMoveStop.Text = "暂停运动";
            this.chbMoveStop.UseVisualStyleBackColor = true;
            this.chbMoveStop.CheckedChanged += new System.EventHandler(this.chbMoveStop_CheckedChanged);
            // 
            // lblName
            // 
            this.lblName.BackColor = System.Drawing.Color.DodgerBlue;
            this.lblName.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblName.ForeColor = System.Drawing.Color.Black;
            this.lblName.Location = new System.Drawing.Point(5, 5);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(180, 40);
            this.lblName.TabIndex = 250;
            this.lblName.Text = "XRay";
            this.lblName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // chbDebug
            // 
            this.chbDebug.AutoSize = true;
            this.chbDebug.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbDebug.Location = new System.Drawing.Point(541, 12);
            this.chbDebug.Name = "chbDebug";
            this.chbDebug.Size = new System.Drawing.Size(84, 24);
            this.chbDebug.TabIndex = 247;
            this.chbDebug.Text = "调试状态";
            this.chbDebug.UseVisualStyleBackColor = true;
            this.chbDebug.CheckedChanged += new System.EventHandler(this.chbDebug_CheckedChanged);
            // 
            // lblStoreStatus
            // 
            this.lblStoreStatus.AutoSize = true;
            this.lblStoreStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblStoreStatus.ForeColor = System.Drawing.Color.Green;
            this.lblStoreStatus.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblStoreStatus.Location = new System.Drawing.Point(731, 14);
            this.lblStoreStatus.Name = "lblStoreStatus";
            this.lblStoreStatus.Size = new System.Drawing.Size(65, 20);
            this.lblStoreStatus.TabIndex = 245;
            this.lblStoreStatus.Text = "等待启动";
            this.lblStoreStatus.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // btnStart
            // 
            this.btnStart.BackColor = System.Drawing.Color.White;
            this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnStart.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnStart.Location = new System.Drawing.Point(188, 5);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(110, 40);
            this.btnStart.TabIndex = 86;
            this.btnStart.Text = "启动调试";
            this.btnStart.UseVisualStyleBackColor = false;
            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
            // 
            // btnStop
            // 
            this.btnStop.BackColor = System.Drawing.Color.White;
            this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnStop.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnStop.Location = new System.Drawing.Point(301, 5);
            this.btnStop.Name = "btnStop";
            this.btnStop.Size = new System.Drawing.Size(110, 40);
            this.btnStop.TabIndex = 87;
            this.btnStop.Text = "停止";
            this.btnStop.UseVisualStyleBackColor = false;
            this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox3);
            this.tabPage1.Controls.Add(this.groupBox4);
            this.tabPage1.Controls.Add(this.groupBox5);
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Location = new System.Drawing.Point(4, 26);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(1315, 486);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "    IO列表     ";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBox3.Controls.Add(this.tableLayoutPanel1);
            this.groupBox3.Location = new System.Drawing.Point(6, 6);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(240, 474);
            this.groupBox3.TabIndex = 103;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "DI列表";
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel1.AutoScroll = true;
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 14);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 2;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 17F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 17F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(229, 454);
            this.tableLayoutPanel1.TabIndex = 102;
            // 
            // groupBox4
            // 
            this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBox4.Controls.Add(this.tableLayoutPanel2);
            this.groupBox4.Location = new System.Drawing.Point(251, 6);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(240, 474);
            this.groupBox4.TabIndex = 104;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "DO列表";
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel2.AutoScroll = true;
            this.tableLayoutPanel2.ColumnCount = 1;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.Location = new System.Drawing.Point(5, 14);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 2;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 17F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 17F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(229, 454);
            this.tableLayoutPanel2.TabIndex = 103;
            // 
            // groupBox5
            // 
            this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox5.Controls.Add(this.X_Lock_On);
            this.groupBox5.Controls.Add(this.X_StopCylinder_Down);
            this.groupBox5.Controls.Add(this.X_StopCylinder_Up);
            this.groupBox5.Controls.Add(this.X_OutDoor_Down);
            this.groupBox5.Controls.Add(this.X_OutDoor_Up);
            this.groupBox5.Controls.Add(this.X_InDoor_Down);
            this.groupBox5.Controls.Add(this.btnCloseAll);
            this.groupBox5.Controls.Add(this.X_MLine_Run);
            this.groupBox5.Controls.Add(this.X_InLine_Run);
            this.groupBox5.Controls.Add(this.X_InDoor_Up);
            this.groupBox5.Location = new System.Drawing.Point(497, 6);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(812, 371);
            this.groupBox5.TabIndex = 255;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "IO操作测试";
            // 
            // X_Lock_On
            // 
            this.X_Lock_On.BackColor = System.Drawing.Color.White;
            this.X_Lock_On.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_Lock_On.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_Lock_On.Location = new System.Drawing.Point(386, 27);
            this.X_Lock_On.Name = "X_Lock_On";
            this.X_Lock_On.Size = new System.Drawing.Size(164, 35);
            this.X_Lock_On.TabIndex = 265;
            this.X_Lock_On.Text = "Y97_X光机互锁信号ON";
            this.X_Lock_On.UseVisualStyleBackColor = false;
            this.X_Lock_On.Click += new System.EventHandler(this.X_Lock_On_Click);
            // 
            // X_StopCylinder_Down
            // 
            this.X_StopCylinder_Down.BackColor = System.Drawing.Color.White;
            this.X_StopCylinder_Down.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_StopCylinder_Down.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_StopCylinder_Down.Location = new System.Drawing.Point(386, 121);
            this.X_StopCylinder_Down.Name = "X_StopCylinder_Down";
            this.X_StopCylinder_Down.Size = new System.Drawing.Size(164, 35);
            this.X_StopCylinder_Down.TabIndex = 264;
            this.X_StopCylinder_Down.Text = "阻挡气缸下降/挡停 ↓";
            this.X_StopCylinder_Down.UseVisualStyleBackColor = false;
            this.X_StopCylinder_Down.Click += new System.EventHandler(this.btnStopCylinder_Down_Click);
            // 
            // X_StopCylinder_Up
            // 
            this.X_StopCylinder_Up.BackColor = System.Drawing.Color.White;
            this.X_StopCylinder_Up.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_StopCylinder_Up.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_StopCylinder_Up.Location = new System.Drawing.Point(386, 82);
            this.X_StopCylinder_Up.Name = "X_StopCylinder_Up";
            this.X_StopCylinder_Up.Size = new System.Drawing.Size(164, 35);
            this.X_StopCylinder_Up.TabIndex = 263;
            this.X_StopCylinder_Up.Text = "阻挡气缸上升/放行 ↑";
            this.X_StopCylinder_Up.UseVisualStyleBackColor = false;
            this.X_StopCylinder_Up.Click += new System.EventHandler(this.btnStopCylinder_Up_Click);
            // 
            // X_OutDoor_Down
            // 
            this.X_OutDoor_Down.BackColor = System.Drawing.Color.White;
            this.X_OutDoor_Down.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_OutDoor_Down.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_OutDoor_Down.Location = new System.Drawing.Point(204, 121);
            this.X_OutDoor_Down.Name = "X_OutDoor_Down";
            this.X_OutDoor_Down.Size = new System.Drawing.Size(164, 35);
            this.X_OutDoor_Down.TabIndex = 262;
            this.X_OutDoor_Down.Text = "出口防护门下降/打开 ↓";
            this.X_OutDoor_Down.UseVisualStyleBackColor = false;
            this.X_OutDoor_Down.Click += new System.EventHandler(this.btnOutDoor_Down_Click);
            // 
            // X_OutDoor_Up
            // 
            this.X_OutDoor_Up.BackColor = System.Drawing.Color.White;
            this.X_OutDoor_Up.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_OutDoor_Up.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_OutDoor_Up.Location = new System.Drawing.Point(204, 82);
            this.X_OutDoor_Up.Name = "X_OutDoor_Up";
            this.X_OutDoor_Up.Size = new System.Drawing.Size(164, 35);
            this.X_OutDoor_Up.TabIndex = 261;
            this.X_OutDoor_Up.Text = "出口防护门上升/关闭 ↑";
            this.X_OutDoor_Up.UseVisualStyleBackColor = false;
            this.X_OutDoor_Up.Click += new System.EventHandler(this.btnOutDoor_Up_Click);
            // 
            // X_InDoor_Down
            // 
            this.X_InDoor_Down.BackColor = System.Drawing.Color.White;
            this.X_InDoor_Down.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_InDoor_Down.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_InDoor_Down.Location = new System.Drawing.Point(23, 121);
            this.X_InDoor_Down.Name = "X_InDoor_Down";
            this.X_InDoor_Down.Size = new System.Drawing.Size(164, 35);
            this.X_InDoor_Down.TabIndex = 260;
            this.X_InDoor_Down.Text = "入口防护门下降/打开 ↓";
            this.X_InDoor_Down.UseVisualStyleBackColor = false;
            this.X_InDoor_Down.Click += new System.EventHandler(this.btnInDoor_Down_Click);
            // 
            // btnCloseAll
            // 
            this.btnCloseAll.BackColor = System.Drawing.Color.White;
            this.btnCloseAll.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnCloseAll.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnCloseAll.Location = new System.Drawing.Point(23, 199);
            this.btnCloseAll.Name = "btnCloseAll";
            this.btnCloseAll.Size = new System.Drawing.Size(164, 51);
            this.btnCloseAll.TabIndex = 259;
            this.btnCloseAll.Text = "关闭所有DO";
            this.btnCloseAll.UseVisualStyleBackColor = false;
            this.btnCloseAll.Click += new System.EventHandler(this.btnCloseAll_Click);
            // 
            // X_MLine_Run
            // 
            this.X_MLine_Run.BackColor = System.Drawing.Color.White;
            this.X_MLine_Run.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_MLine_Run.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_MLine_Run.Location = new System.Drawing.Point(204, 27);
            this.X_MLine_Run.Name = "X_MLine_Run";
            this.X_MLine_Run.Size = new System.Drawing.Size(164, 35);
            this.X_MLine_Run.TabIndex = 258;
            this.X_MLine_Run.Text = "Y96_中间皮带线正转";
            this.X_MLine_Run.UseVisualStyleBackColor = false;
            this.X_MLine_Run.Click += new System.EventHandler(this.X_Lock_On_Click);
            // 
            // X_InLine_Run
            // 
            this.X_InLine_Run.BackColor = System.Drawing.Color.White;
            this.X_InLine_Run.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_InLine_Run.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_InLine_Run.Location = new System.Drawing.Point(23, 27);
            this.X_InLine_Run.Name = "X_InLine_Run";
            this.X_InLine_Run.Size = new System.Drawing.Size(164, 35);
            this.X_InLine_Run.TabIndex = 256;
            this.X_InLine_Run.Text = "Y95_入口皮带线正转";
            this.X_InLine_Run.UseVisualStyleBackColor = false;
            this.X_InLine_Run.Click += new System.EventHandler(this.X_Lock_On_Click);
            // 
            // X_InDoor_Up
            // 
            this.X_InDoor_Up.BackColor = System.Drawing.Color.White;
            this.X_InDoor_Up.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.X_InDoor_Up.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.X_InDoor_Up.Location = new System.Drawing.Point(23, 82);
            this.X_InDoor_Up.Name = "X_InDoor_Up";
            this.X_InDoor_Up.Size = new System.Drawing.Size(164, 35);
            this.X_InDoor_Up.TabIndex = 246;
            this.X_InDoor_Up.Text = "入口防护门上升/关闭 ↑";
            this.X_InDoor_Up.UseVisualStyleBackColor = false;
            this.X_InDoor_Up.Click += new System.EventHandler(this.btnInDoorUp_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.txtDOIndex);
            this.groupBox1.Controls.Add(this.txtDoName);
            this.groupBox1.Controls.Add(this.label17);
            this.groupBox1.Controls.Add(this.label14);
            this.groupBox1.Controls.Add(this.btnOpenDo);
            this.groupBox1.Controls.Add(this.btnWriteSingleDO);
            this.groupBox1.Controls.Add(this.txtWriteTime);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.txtSlaveId);
            this.groupBox1.Controls.Add(this.cmbWriteIO);
            this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.groupBox1.Location = new System.Drawing.Point(497, 383);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(812, 97);
            this.groupBox1.TabIndex = 105;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "DO写入";
            // 
            // txtDOIndex
            // 
            this.txtDOIndex.Enabled = false;
            this.txtDOIndex.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtDOIndex.Location = new System.Drawing.Point(233, 57);
            this.txtDOIndex.MaxLength = 10;
            this.txtDOIndex.Name = "txtDOIndex";
            this.txtDOIndex.Size = new System.Drawing.Size(47, 23);
            this.txtDOIndex.TabIndex = 276;
            this.txtDOIndex.Text = "0";
            // 
            // txtDoName
            // 
            this.txtDoName.Enabled = false;
            this.txtDoName.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtDoName.Location = new System.Drawing.Point(66, 57);
            this.txtDoName.MaxLength = 10;
            this.txtDoName.Name = "txtDoName";
            this.txtDoName.Size = new System.Drawing.Size(116, 23);
            this.txtDoName.TabIndex = 275;
            this.txtDoName.Text = "0";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label17.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label17.Location = new System.Drawing.Point(12, 60);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(46, 17);
            this.label17.TabIndex = 274;
            this.label17.Text = "设备IP:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label14.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label14.Location = new System.Drawing.Point(190, 60);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(35, 17);
            this.label14.TabIndex = 273;
            this.label14.Text = "地址:";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // btnOpenDo
            // 
            this.btnOpenDo.BackColor = System.Drawing.Color.White;
            this.btnOpenDo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnOpenDo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnOpenDo.Location = new System.Drawing.Point(288, 51);
            this.btnOpenDo.Name = "btnOpenDo";
            this.btnOpenDo.Size = new System.Drawing.Size(140, 34);
            this.btnOpenDo.TabIndex = 272;
            this.btnOpenDo.Text = "打开";
            this.btnOpenDo.UseVisualStyleBackColor = false;
            this.btnOpenDo.Click += new System.EventHandler(this.btnOpenDo_Click);
            // 
            // btnWriteSingleDO
            // 
            this.btnWriteSingleDO.BackColor = System.Drawing.Color.White;
            this.btnWriteSingleDO.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnWriteSingleDO.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnWriteSingleDO.Location = new System.Drawing.Point(436, 51);
            this.btnWriteSingleDO.Name = "btnWriteSingleDO";
            this.btnWriteSingleDO.Size = new System.Drawing.Size(140, 34);
            this.btnWriteSingleDO.TabIndex = 269;
            this.btnWriteSingleDO.Text = "关闭";
            this.btnWriteSingleDO.UseVisualStyleBackColor = false;
            this.btnWriteSingleDO.Click += new System.EventHandler(this.btnWriteSingleDO_Click);
            // 
            // txtWriteTime
            // 
            this.txtWriteTime.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtWriteTime.Location = new System.Drawing.Point(461, 22);
            this.txtWriteTime.MaxLength = 10;
            this.txtWriteTime.Name = "txtWriteTime";
            this.txtWriteTime.Size = new System.Drawing.Size(66, 23);
            this.txtWriteTime.TabIndex = 271;
            this.txtWriteTime.Text = "0";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label5.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label5.Location = new System.Drawing.Point(394, 25);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(60, 17);
            this.label5.TabIndex = 270;
            this.label5.Text = "定时(ms):";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtSlaveId
            // 
            this.txtSlaveId.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtSlaveId.Location = new System.Drawing.Point(375, 24);
            this.txtSlaveId.MaxLength = 10;
            this.txtSlaveId.Name = "txtSlaveId";
            this.txtSlaveId.Size = new System.Drawing.Size(12, 23);
            this.txtSlaveId.TabIndex = 255;
            this.txtSlaveId.Text = "0";
            this.txtSlaveId.Visible = false;
            // 
            // cmbWriteIO
            // 
            this.cmbWriteIO.DisplayMember = "ProName";
            this.cmbWriteIO.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
            this.cmbWriteIO.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbWriteIO.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmbWriteIO.FormattingEnabled = true;
            this.cmbWriteIO.ItemHeight = 22;
            this.cmbWriteIO.Location = new System.Drawing.Point(10, 19);
            this.cmbWriteIO.Name = "cmbWriteIO";
            this.cmbWriteIO.Size = new System.Drawing.Size(358, 28);
            this.cmbWriteIO.TabIndex = 234;
            this.cmbWriteIO.ValueMember = "ProName";
            this.cmbWriteIO.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cmbWriteIO_DrawItem);
            this.cmbWriteIO.SelectedIndexChanged += new System.EventHandler(this.cmbWriteIO_SelectedIndexChanged);
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.groupBox6);
            this.tabPage3.Location = new System.Drawing.Point(4, 26);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(1315, 486);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "  状态信息  ";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // groupBox6
            // 
            this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox6.Controls.Add(this.groupBox8);
            this.groupBox6.Controls.Add(this.groupBox7);
            this.groupBox6.Controls.Add(this.groupBox2);
            this.groupBox6.Controls.Add(this.lblInoutInfo);
            this.groupBox6.Controls.Add(this.lblMoveInfo);
            this.groupBox6.Controls.Add(this.lblThisSta);
            this.groupBox6.Location = new System.Drawing.Point(3, 3);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(1308, 480);
            this.groupBox6.TabIndex = 279;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "消息";
            // 
            // groupBox8
            // 
            this.groupBox8.Controls.Add(this.btnSelImage);
            this.groupBox8.Controls.Add(this.txtImage);
            this.groupBox8.Controls.Add(this.numWSize);
            this.groupBox8.Controls.Add(this.label3);
            this.groupBox8.Controls.Add(this.numTh);
            this.groupBox8.Controls.Add(this.btnSaveTh);
            this.groupBox8.Controls.Add(this.txtResult);
            this.groupBox8.Controls.Add(this.label2);
            this.groupBox8.Controls.Add(this.label1);
            this.groupBox8.Controls.Add(this.btnWorkTest);
            this.groupBox8.Location = new System.Drawing.Point(600, 306);
            this.groupBox8.Name = "groupBox8";
            this.groupBox8.Size = new System.Drawing.Size(660, 168);
            this.groupBox8.TabIndex = 288;
            this.groupBox8.TabStop = false;
            this.groupBox8.Text = "点料测试";
            // 
            // btnSelImage
            // 
            this.btnSelImage.BackColor = System.Drawing.Color.White;
            this.btnSelImage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSelImage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnSelImage.Location = new System.Drawing.Point(6, 22);
            this.btnSelImage.Name = "btnSelImage";
            this.btnSelImage.Size = new System.Drawing.Size(76, 25);
            this.btnSelImage.TabIndex = 296;
            this.btnSelImage.Text = "选择图片";
            this.btnSelImage.UseVisualStyleBackColor = false;
            this.btnSelImage.Click += new System.EventHandler(this.btnSelImage_Click);
            // 
            // txtImage
            // 
            this.txtImage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtImage.Location = new System.Drawing.Point(88, 23);
            this.txtImage.Name = "txtImage";
            this.txtImage.Size = new System.Drawing.Size(566, 23);
            this.txtImage.TabIndex = 295;
            // 
            // numWSize
            // 
            this.numWSize.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.numWSize.Location = new System.Drawing.Point(88, 115);
            this.numWSize.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numWSize.Name = "numWSize";
            this.numWSize.Size = new System.Drawing.Size(82, 26);
            this.numWSize.TabIndex = 293;
            this.numWSize.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(14, 120);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(68, 17);
            this.label3.TabIndex = 292;
            this.label3.Text = "窗口大小:";
            // 
            // numTh
            // 
            this.numTh.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.numTh.Location = new System.Drawing.Point(88, 67);
            this.numTh.Name = "numTh";
            this.numTh.Size = new System.Drawing.Size(82, 26);
            this.numTh.TabIndex = 291;
            this.numTh.Value = new decimal(new int[] {
            30,
            0,
            0,
            0});
            // 
            // btnSaveTh
            // 
            this.btnSaveTh.BackColor = System.Drawing.Color.White;
            this.btnSaveTh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSaveTh.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnSaveTh.Location = new System.Drawing.Point(201, 63);
            this.btnSaveTh.Name = "btnSaveTh";
            this.btnSaveTh.Size = new System.Drawing.Size(130, 35);
            this.btnSaveTh.TabIndex = 290;
            this.btnSaveTh.Text = "保存为默认阈值";
            this.btnSaveTh.UseVisualStyleBackColor = false;
            this.btnSaveTh.Click += new System.EventHandler(this.btnSaveTh_Click);
            // 
            // txtResult
            // 
            this.txtResult.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtResult.Location = new System.Drawing.Point(399, 115);
            this.txtResult.Name = "txtResult";
            this.txtResult.Size = new System.Drawing.Size(82, 26);
            this.txtResult.TabIndex = 289;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(349, 120);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(44, 17);
            this.label2.TabIndex = 288;
            this.label2.Text = "结果:";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(38, 72);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(44, 17);
            this.label1.TabIndex = 286;
            this.label1.Text = "阈值:";
            // 
            // btnWorkTest
            // 
            this.btnWorkTest.BackColor = System.Drawing.Color.White;
            this.btnWorkTest.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnWorkTest.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnWorkTest.Location = new System.Drawing.Point(201, 111);
            this.btnWorkTest.Name = "btnWorkTest";
            this.btnWorkTest.Size = new System.Drawing.Size(130, 35);
            this.btnWorkTest.TabIndex = 285;
            this.btnWorkTest.Text = "点料测试";
            this.btnWorkTest.UseVisualStyleBackColor = false;
            this.btnWorkTest.Click += new System.EventHandler(this.btnWorkTest_Click);
            // 
            // groupBox7
            // 
            this.groupBox7.Controls.Add(this.btnImage);
            this.groupBox7.Controls.Add(this.btnXStart);
            this.groupBox7.Controls.Add(this.btnXStop);
            this.groupBox7.Location = new System.Drawing.Point(294, 306);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(300, 168);
            this.groupBox7.TabIndex = 283;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "X光测试";
            // 
            // btnImage
            // 
            this.btnImage.BackColor = System.Drawing.Color.White;
            this.btnImage.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnImage.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnImage.Location = new System.Drawing.Point(158, 63);
            this.btnImage.Name = "btnImage";
            this.btnImage.Size = new System.Drawing.Size(130, 35);
            this.btnImage.TabIndex = 287;
            this.btnImage.Text = "拍照片";
            this.btnImage.UseVisualStyleBackColor = false;
            this.btnImage.Click += new System.EventHandler(this.btnImage_Click);
            // 
            // btnXStart
            // 
            this.btnXStart.BackColor = System.Drawing.Color.White;
            this.btnXStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnXStart.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnXStart.Location = new System.Drawing.Point(22, 39);
            this.btnXStart.Name = "btnXStart";
            this.btnXStart.Size = new System.Drawing.Size(130, 35);
            this.btnXStart.TabIndex = 286;
            this.btnXStart.Text = "打开X光";
            this.btnXStart.UseVisualStyleBackColor = false;
            this.btnXStart.Click += new System.EventHandler(this.btnXStart_Click);
            // 
            // btnXStop
            // 
            this.btnXStop.BackColor = System.Drawing.Color.White;
            this.btnXStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnXStop.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnXStop.Location = new System.Drawing.Point(22, 96);
            this.btnXStop.Name = "btnXStop";
            this.btnXStop.Size = new System.Drawing.Size(130, 35);
            this.btnXStop.TabIndex = 285;
            this.btnXStop.Text = "关闭X光";
            this.btnXStop.UseVisualStyleBackColor = false;
            this.btnXStop.Click += new System.EventHandler(this.btnXStop_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.lblXrOpen);
            this.groupBox2.Controls.Add(this.lblLastS);
            this.groupBox2.Controls.Add(this.lblData);
            this.groupBox2.Controls.Add(this.lblCom);
            this.groupBox2.Controls.Add(this.lblDiany);
            this.groupBox2.Controls.Add(this.lblDianl);
            this.groupBox2.Location = new System.Drawing.Point(12, 306);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(276, 168);
            this.groupBox2.TabIndex = 282;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "X光参数/状态信息";
            this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
            // 
            // lblXrOpen
            // 
            this.lblXrOpen.AutoSize = true;
            this.lblXrOpen.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblXrOpen.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblXrOpen.Location = new System.Drawing.Point(12, 144);
            this.lblXrOpen.Name = "lblXrOpen";
            this.lblXrOpen.Size = new System.Drawing.Size(0, 17);
            this.lblXrOpen.TabIndex = 5;
            // 
            // lblLastS
            // 
            this.lblLastS.AutoSize = true;
            this.lblLastS.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblLastS.Location = new System.Drawing.Point(12, 120);
            this.lblLastS.Name = "lblLastS";
            this.lblLastS.Size = new System.Drawing.Size(68, 17);
            this.lblLastS.TabIndex = 4;
            this.lblLastS.Text = "点料机状态";
            // 
            // lblData
            // 
            this.lblData.AutoSize = true;
            this.lblData.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblData.Location = new System.Drawing.Point(12, 96);
            this.lblData.Name = "lblData";
            this.lblData.Size = new System.Drawing.Size(92, 17);
            this.lblData.TabIndex = 3;
            this.lblData.Text = "最后使用时间:";
            // 
            // lblCom
            // 
            this.lblCom.AutoSize = true;
            this.lblCom.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblCom.Location = new System.Drawing.Point(12, 24);
            this.lblCom.Name = "lblCom";
            this.lblCom.Size = new System.Drawing.Size(56, 17);
            this.lblCom.TabIndex = 2;
            this.lblCom.Text = "端口号:";
            // 
            // lblDiany
            // 
            this.lblDiany.AutoSize = true;
            this.lblDiany.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblDiany.Location = new System.Drawing.Point(12, 72);
            this.lblDiany.Name = "lblDiany";
            this.lblDiany.Size = new System.Drawing.Size(68, 17);
            this.lblDiany.TabIndex = 1;
            this.lblDiany.Text = "电压信息:";
            // 
            // lblDianl
            // 
            this.lblDianl.AutoSize = true;
            this.lblDianl.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblDianl.Location = new System.Drawing.Point(12, 48);
            this.lblDianl.Name = "lblDianl";
            this.lblDianl.Size = new System.Drawing.Size(68, 17);
            this.lblDianl.TabIndex = 0;
            this.lblDianl.Text = "电流信息:";
            // 
            // lblInoutInfo
            // 
            this.lblInoutInfo.ForeColor = System.Drawing.Color.Green;
            this.lblInoutInfo.Location = new System.Drawing.Point(331, 16);
            this.lblInoutInfo.Name = "lblInoutInfo";
            this.lblInoutInfo.Size = new System.Drawing.Size(962, 22);
            this.lblInoutInfo.TabIndex = 281;
            this.lblInoutInfo.Text = "当前点料信息:";
            // 
            // lblMoveInfo
            // 
            this.lblMoveInfo.AutoSize = true;
            this.lblMoveInfo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblMoveInfo.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblMoveInfo.Location = new System.Drawing.Point(24, 21);
            this.lblMoveInfo.Name = "lblMoveInfo";
            this.lblMoveInfo.Size = new System.Drawing.Size(68, 17);
            this.lblMoveInfo.TabIndex = 280;
            this.lblMoveInfo.Text = "运动信息:";
            // 
            // lblThisSta
            // 
            this.lblThisSta.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblThisSta.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblThisSta.ForeColor = System.Drawing.Color.Red;
            this.lblThisSta.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblThisSta.Location = new System.Drawing.Point(327, 41);
            this.lblThisSta.Name = "lblThisSta";
            this.lblThisSta.Size = new System.Drawing.Size(975, 149);
            this.lblThisSta.TabIndex = 246;
            this.lblThisSta.Text = "等待启动";
            this.lblThisSta.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Location = new System.Drawing.Point(5, 51);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1323, 516);
            this.tabControl1.TabIndex = 257;
            // 
            // fileSystemWatcher1
            // 
            this.fileSystemWatcher1.EnableRaisingEvents = true;
            this.fileSystemWatcher1.SynchronizingObject = this;
            // 
            // FrmXRay
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1334, 571);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.tabControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmXRay";
            this.Text = "XRay——";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmTest_FormClosing);
            this.Load += new System.EventHandler(this.FrmStoreIOStatus_Load);
            this.Shown += new System.EventHandler(this.FrmIOStatus_Shown);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.tabPage1.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox4.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabPage3.ResumeLayout(false);
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.groupBox8.ResumeLayout(false);
            this.groupBox8.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numWSize)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numTh)).EndInit();
            this.groupBox7.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.Label lblStoreStatus;
        private System.Windows.Forms.Button btnStart;
        private System.Windows.Forms.Button btnStop;
        private System.Windows.Forms.CheckBox chbDebug;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Label lblName;
        private System.Windows.Forms.CheckBox chbMoveStop;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        private System.Windows.Forms.GroupBox groupBox4;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.Button X_Lock_On;
        private System.Windows.Forms.Button X_StopCylinder_Down;
        private System.Windows.Forms.Button X_StopCylinder_Up;
        private System.Windows.Forms.Button X_OutDoor_Down;
        private System.Windows.Forms.Button X_OutDoor_Up;
        private System.Windows.Forms.Button X_InDoor_Down;
        private System.Windows.Forms.Button btnCloseAll;
        private System.Windows.Forms.Button X_MLine_Run;
        private System.Windows.Forms.Button X_InLine_Run;
        private System.Windows.Forms.Button X_InDoor_Up;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.TextBox txtDOIndex;
        private System.Windows.Forms.TextBox txtDoName;
        private System.Windows.Forms.Label label17;
        private System.Windows.Forms.Label label14;
        private System.Windows.Forms.Button btnOpenDo;
        private System.Windows.Forms.Button btnWriteSingleDO;
        private System.Windows.Forms.TextBox txtWriteTime;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.TextBox txtSlaveId;
        private System.Windows.Forms.ComboBox cmbWriteIO;
        private System.Windows.Forms.TabPage tabPage3;
        private System.Windows.Forms.GroupBox groupBox6;
        private System.Windows.Forms.GroupBox groupBox8;
        private System.Windows.Forms.NumericUpDown numTh;
        private System.Windows.Forms.Button btnSaveTh;
        private System.Windows.Forms.TextBox txtResult;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button btnWorkTest;
        private System.Windows.Forms.GroupBox groupBox7;
        private System.Windows.Forms.Button btnImage;
        private System.Windows.Forms.Button btnXStart;
        private System.Windows.Forms.Button btnXStop;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.Label lblXrOpen;
        private System.Windows.Forms.Label lblLastS;
        private System.Windows.Forms.Label lblData;
        private System.Windows.Forms.Label lblCom;
        private System.Windows.Forms.Label lblDiany;
        private System.Windows.Forms.Label lblDianl;
        private System.Windows.Forms.Label lblInoutInfo;
        private System.Windows.Forms.Label lblMoveInfo;
        private System.Windows.Forms.Label lblThisSta;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.NumericUpDown numWSize;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtImage;
        private System.Windows.Forms.Button btnSelImage;
        private System.IO.FileSystemWatcher fileSystemWatcher1;
    }
}