FrmHYEquip.Designer.cs 62.5 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 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
namespace OnlineStore.AssemblyLine
{
    partial class FrmHYEquip
    {
        /// <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(FrmHYEquip));
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnCloseAll = new System.Windows.Forms.Button();
            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.groupBox4 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.btnClampWork = new System.Windows.Forms.Button();
            this.btnMoveTake = new System.Windows.Forms.Button();
            this.btnFrontStopDown = new System.Windows.Forms.Button();
            this.btnLocation_Up = new System.Windows.Forms.Button();
            this.btnStopDown = new System.Windows.Forms.Button();
            this.btnLineRun = new System.Windows.Forms.Button();
            this.btnTopCylinder_UP = new System.Windows.Forms.Button();
            this.btnLineBackRun = new System.Windows.Forms.Button();
            this.btnClampRelax = new System.Windows.Forms.Button();
            this.btnLocation_Down = new System.Windows.Forms.Button();
            this.chbDebug = new System.Windows.Forms.CheckBox();
            this.lblThisSta = new System.Windows.Forms.Label();
            this.lblStoreStatus = new System.Windows.Forms.Label();
            this.btnStart = new System.Windows.Forms.Button();
            this.btnStop = new System.Windows.Forms.Button();
            this.btnReset = new System.Windows.Forms.Button();
            this.btnOutStore = new System.Windows.Forms.Button();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.lblMoveInfo = new System.Windows.Forms.Label();
            this.lblTrayNum = new System.Windows.Forms.Label();
            this.lblInstoreList = new System.Windows.Forms.Label();
            this.btnMoveGive = new System.Windows.Forms.Button();
            this.btnUpDownUpbtnTopCylinder_Down = new System.Windows.Forms.Button();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.groupDetial = new System.Windows.Forms.GroupBox();
            this.btnDSave = new System.Windows.Forms.Button();
            this.label3 = new System.Windows.Forms.Label();
            this.txtDP2 = new System.Windows.Forms.TextBox();
            this.listDetitalP2 = new System.Windows.Forms.ListBox();
            this.cmbDHeight = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.cmbDSize = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.btnP3 = new System.Windows.Forms.Button();
            this.txtP3 = new System.Windows.Forms.TextBox();
            this.btnSave = new System.Windows.Forms.Button();
            this.txtP1 = new System.Windows.Forms.TextBox();
            this.btnMoveToP1 = new System.Windows.Forms.Button();
            this.cmbSizeList = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.btnP2 = new System.Windows.Forms.Button();
            this.txtP2 = new System.Windows.Forms.TextBox();
            this.axisMoveControl1 = new OnlineStore.AssemblyLine.AxisMoveControl();
            this.panel1 = new System.Windows.Forms.Panel();
            this.btnClose = new System.Windows.Forms.Button();
            this.lblName = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.groupDetial.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnCloseAll);
            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, 188);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(394, 156);
            this.groupBox1.TabIndex = 105;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "DO写入";
            // 
            // 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(17, 107);
            this.btnCloseAll.Name = "btnCloseAll";
            this.btnCloseAll.Size = new System.Drawing.Size(140, 34);
            this.btnCloseAll.TabIndex = 259;
            this.btnCloseAll.Text = "关闭所有DO";
            this.btnCloseAll.UseVisualStyleBackColor = false;
            this.btnCloseAll.Click += new System.EventHandler(this.btnCloseAll_Click);
            // 
            // 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(191, 67);
            this.txtDOIndex.MaxLength = 10;
            this.txtDOIndex.Name = "txtDOIndex";
            this.txtDOIndex.Size = new System.Drawing.Size(38, 23);
            this.txtDOIndex.TabIndex = 284;
            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(72, 67);
            this.txtDoName.MaxLength = 10;
            this.txtDoName.Name = "txtDoName";
            this.txtDoName.Size = new System.Drawing.Size(70, 23);
            this.txtDoName.TabIndex = 283;
            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(19, 70);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(46, 17);
            this.label17.TabIndex = 282;
            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(149, 70);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(35, 17);
            this.label14.TabIndex = 281;
            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(166, 107);
            this.btnOpenDo.Name = "btnOpenDo";
            this.btnOpenDo.Size = new System.Drawing.Size(100, 34);
            this.btnOpenDo.TabIndex = 280;
            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(275, 107);
            this.btnWriteSingleDO.Name = "btnWriteSingleDO";
            this.btnWriteSingleDO.Size = new System.Drawing.Size(100, 34);
            this.btnWriteSingleDO.TabIndex = 277;
            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(303, 67);
            this.txtWriteTime.MaxLength = 10;
            this.txtWriteTime.Name = "txtWriteTime";
            this.txtWriteTime.Size = new System.Drawing.Size(66, 23);
            this.txtWriteTime.TabIndex = 279;
            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(236, 70);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(60, 17);
            this.label5.TabIndex = 278;
            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(417, 26);
            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(17, 25);
            this.cmbWriteIO.Name = "cmbWriteIO";
            this.cmbWriteIO.Size = new System.Drawing.Size(356, 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);
            // 
            // 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, 424);
            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.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, 404);
            this.tableLayoutPanel2.TabIndex = 103;
            // 
            // 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, 424);
            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.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, 404);
            this.tableLayoutPanel1.TabIndex = 102;
            // 
            // 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.btnClampWork);
            this.groupBox5.Controls.Add(this.btnMoveTake);
            this.groupBox5.Controls.Add(this.btnFrontStopDown);
            this.groupBox5.Controls.Add(this.btnLocation_Up);
            this.groupBox5.Controls.Add(this.btnStopDown);
            this.groupBox5.Controls.Add(this.btnLineRun);
            this.groupBox5.Controls.Add(this.btnTopCylinder_UP);
            this.groupBox5.Controls.Add(this.btnLineBackRun);
            this.groupBox5.Location = new System.Drawing.Point(897, 188);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(332, 321);
            this.groupBox5.TabIndex = 255;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "IO操作测试";
            // 
            // btnClampWork
            // 
            this.btnClampWork.BackColor = System.Drawing.Color.White;
            this.btnClampWork.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnClampWork.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnClampWork.Location = new System.Drawing.Point(175, 140);
            this.btnClampWork.Name = "btnClampWork";
            this.btnClampWork.Size = new System.Drawing.Size(140, 34);
            this.btnClampWork.TabIndex = 265;
            this.btnClampWork.Text = "夹料气缸夹紧";
            this.btnClampWork.UseVisualStyleBackColor = false;
            this.btnClampWork.Click += new System.EventHandler(this.btnClampWork_Click);
            // 
            // btnMoveTake
            // 
            this.btnMoveTake.BackColor = System.Drawing.Color.White;
            this.btnMoveTake.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnMoveTake.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnMoveTake.Location = new System.Drawing.Point(17, 140);
            this.btnMoveTake.Name = "btnMoveTake";
            this.btnMoveTake.Size = new System.Drawing.Size(140, 34);
            this.btnMoveTake.TabIndex = 263;
            this.btnMoveTake.Text = "接驳台取料";
            this.btnMoveTake.UseVisualStyleBackColor = false;
            this.btnMoveTake.Click += new System.EventHandler(this.btnMoveTake_Click);
            // 
            // btnFrontStopDown
            // 
            this.btnFrontStopDown.BackColor = System.Drawing.Color.White;
            this.btnFrontStopDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnFrontStopDown.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnFrontStopDown.Location = new System.Drawing.Point(175, 62);
            this.btnFrontStopDown.Name = "btnFrontStopDown";
            this.btnFrontStopDown.Size = new System.Drawing.Size(140, 34);
            this.btnFrontStopDown.TabIndex = 261;
            this.btnFrontStopDown.Text = "托盘前阻挡下降";
            this.btnFrontStopDown.UseVisualStyleBackColor = false;
            this.btnFrontStopDown.Click += new System.EventHandler(this.btnFrontStopDown_Click);
            // 
            // btnLocation_Up
            // 
            this.btnLocation_Up.BackColor = System.Drawing.Color.White;
            this.btnLocation_Up.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnLocation_Up.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnLocation_Up.Location = new System.Drawing.Point(175, 100);
            this.btnLocation_Up.Name = "btnLocation_Up";
            this.btnLocation_Up.Size = new System.Drawing.Size(140, 34);
            this.btnLocation_Up.TabIndex = 260;
            this.btnLocation_Up.Text = "横移定位上升";
            this.btnLocation_Up.UseVisualStyleBackColor = false;
            this.btnLocation_Up.Click += new System.EventHandler(this.btnLocation_Up_Click);
            // 
            // btnStopDown
            // 
            this.btnStopDown.BackColor = System.Drawing.Color.White;
            this.btnStopDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnStopDown.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnStopDown.Location = new System.Drawing.Point(175, 22);
            this.btnStopDown.Name = "btnStopDown";
            this.btnStopDown.Size = new System.Drawing.Size(140, 34);
            this.btnStopDown.TabIndex = 258;
            this.btnStopDown.Text = "阻挡下降";
            this.btnStopDown.UseVisualStyleBackColor = false;
            this.btnStopDown.Click += new System.EventHandler(this.btnStopDown_Click);
            // 
            // btnLineRun
            // 
            this.btnLineRun.BackColor = System.Drawing.Color.White;
            this.btnLineRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnLineRun.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnLineRun.Location = new System.Drawing.Point(17, 22);
            this.btnLineRun.Name = "btnLineRun";
            this.btnLineRun.Size = new System.Drawing.Size(140, 34);
            this.btnLineRun.TabIndex = 256;
            this.btnLineRun.Text = "横移电机正转>>";
            this.btnLineRun.UseVisualStyleBackColor = false;
            this.btnLineRun.Click += new System.EventHandler(this.btnLineRun_Click);
            // 
            // btnTopCylinder_UP
            // 
            this.btnTopCylinder_UP.BackColor = System.Drawing.Color.White;
            this.btnTopCylinder_UP.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnTopCylinder_UP.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnTopCylinder_UP.Location = new System.Drawing.Point(17, 100);
            this.btnTopCylinder_UP.Name = "btnTopCylinder_UP";
            this.btnTopCylinder_UP.Size = new System.Drawing.Size(140, 34);
            this.btnTopCylinder_UP.TabIndex = 255;
            this.btnTopCylinder_UP.Text = "横移顶升上升";
            this.btnTopCylinder_UP.UseVisualStyleBackColor = false;
            this.btnTopCylinder_UP.Click += new System.EventHandler(this.btnTopCylinder_UP_Click);
            // 
            // btnLineBackRun
            // 
            this.btnLineBackRun.BackColor = System.Drawing.Color.White;
            this.btnLineBackRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnLineBackRun.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnLineBackRun.Location = new System.Drawing.Point(17, 61);
            this.btnLineBackRun.Name = "btnLineBackRun";
            this.btnLineBackRun.Size = new System.Drawing.Size(140, 34);
            this.btnLineBackRun.TabIndex = 246;
            this.btnLineBackRun.Text = "横移电机反转<<";
            this.btnLineBackRun.UseVisualStyleBackColor = false;
            this.btnLineBackRun.Click += new System.EventHandler(this.btnLineBackRun_Click);
            // 
            // btnClampRelax
            // 
            this.btnClampRelax.BackColor = System.Drawing.Color.White;
            this.btnClampRelax.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnClampRelax.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnClampRelax.Location = new System.Drawing.Point(699, 419);
            this.btnClampRelax.Name = "btnClampRelax";
            this.btnClampRelax.Size = new System.Drawing.Size(140, 34);
            this.btnClampRelax.TabIndex = 264;
            this.btnClampRelax.Text = "夹料气缸放松";
            this.btnClampRelax.UseVisualStyleBackColor = false;
            this.btnClampRelax.Visible = false;
            // 
            // btnLocation_Down
            // 
            this.btnLocation_Down.BackColor = System.Drawing.Color.White;
            this.btnLocation_Down.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnLocation_Down.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnLocation_Down.Location = new System.Drawing.Point(699, 379);
            this.btnLocation_Down.Name = "btnLocation_Down";
            this.btnLocation_Down.Size = new System.Drawing.Size(140, 34);
            this.btnLocation_Down.TabIndex = 259;
            this.btnLocation_Down.Text = "横移定位下降";
            this.btnLocation_Down.UseVisualStyleBackColor = false;
            this.btnLocation_Down.Visible = false;
            // 
            // 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(673, 22);
            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);
            // 
            // lblThisSta
            // 
            this.lblThisSta.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.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(255, 13);
            this.lblThisSta.Name = "lblThisSta";
            this.lblThisSta.Size = new System.Drawing.Size(470, 158);
            this.lblThisSta.TabIndex = 246;
            this.lblThisSta.Text = "等待启动";
            this.lblThisSta.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // 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(788, 24);
            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(190, 13);
            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(305, 13);
            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);
            // 
            // btnReset
            // 
            this.btnReset.BackColor = System.Drawing.Color.White;
            this.btnReset.Enabled = false;
            this.btnReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnReset.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnReset.Location = new System.Drawing.Point(420, 13);
            this.btnReset.Name = "btnReset";
            this.btnReset.Size = new System.Drawing.Size(110, 40);
            this.btnReset.TabIndex = 95;
            this.btnReset.Text = "复位";
            this.btnReset.UseVisualStyleBackColor = false;
            this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
            // 
            // btnOutStore
            // 
            this.btnOutStore.BackColor = System.Drawing.Color.White;
            this.btnOutStore.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnOutStore.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnOutStore.Location = new System.Drawing.Point(535, 13);
            this.btnOutStore.Name = "btnOutStore";
            this.btnOutStore.Size = new System.Drawing.Size(110, 40);
            this.btnOutStore.TabIndex = 101;
            this.btnOutStore.Text = "出料测试";
            this.btnOutStore.UseVisualStyleBackColor = false;
            this.btnOutStore.Click += new System.EventHandler(this.btnOutStore_Click);
            // 
            // 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.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Location = new System.Drawing.Point(5, 62);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1243, 545);
            this.tabControl1.TabIndex = 257;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox6);
            this.tabPage1.Controls.Add(this.btnClampRelax);
            this.tabPage1.Controls.Add(this.groupBox3);
            this.tabPage1.Controls.Add(this.groupBox4);
            this.tabPage1.Controls.Add(this.btnMoveGive);
            this.tabPage1.Controls.Add(this.groupBox5);
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.btnUpDownUpbtnTopCylinder_Down);
            this.tabPage1.Controls.Add(this.btnLocation_Down);
            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(1235, 515);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "    IO列表     ";
            this.tabPage1.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.lblMoveInfo);
            this.groupBox6.Controls.Add(this.lblTrayNum);
            this.groupBox6.Controls.Add(this.lblInstoreList);
            this.groupBox6.Controls.Add(this.lblThisSta);
            this.groupBox6.Location = new System.Drawing.Point(497, 6);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(731, 176);
            this.groupBox6.TabIndex = 278;
            this.groupBox6.TabStop = false;
            this.groupBox6.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(18, 29);
            this.lblMoveInfo.Name = "lblMoveInfo";
            this.lblMoveInfo.Size = new System.Drawing.Size(68, 17);
            this.lblMoveInfo.TabIndex = 280;
            this.lblMoveInfo.Text = "运动信息:";
            // 
            // lblTrayNum
            // 
            this.lblTrayNum.AutoSize = true;
            this.lblTrayNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblTrayNum.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblTrayNum.Location = new System.Drawing.Point(29, 29);
            this.lblTrayNum.Name = "lblTrayNum";
            this.lblTrayNum.Size = new System.Drawing.Size(0, 17);
            this.lblTrayNum.TabIndex = 276;
            this.lblTrayNum.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // lblInstoreList
            // 
            this.lblInstoreList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblInstoreList.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblInstoreList.ForeColor = System.Drawing.Color.Green;
            this.lblInstoreList.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblInstoreList.Location = new System.Drawing.Point(255, 177);
            this.lblInstoreList.Name = "lblInstoreList";
            this.lblInstoreList.Size = new System.Drawing.Size(470, 184);
            this.lblInstoreList.TabIndex = 277;
            // 
            // btnMoveGive
            // 
            this.btnMoveGive.BackColor = System.Drawing.Color.White;
            this.btnMoveGive.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnMoveGive.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnMoveGive.Location = new System.Drawing.Point(541, 419);
            this.btnMoveGive.Name = "btnMoveGive";
            this.btnMoveGive.Size = new System.Drawing.Size(140, 34);
            this.btnMoveGive.TabIndex = 262;
            this.btnMoveGive.Text = "接驳台放料";
            this.btnMoveGive.UseVisualStyleBackColor = false;
            this.btnMoveGive.Visible = false;
            // 
            // btnUpDownUpbtnTopCylinder_Down
            // 
            this.btnUpDownUpbtnTopCylinder_Down.BackColor = System.Drawing.Color.White;
            this.btnUpDownUpbtnTopCylinder_Down.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnUpDownUpbtnTopCylinder_Down.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnUpDownUpbtnTopCylinder_Down.Location = new System.Drawing.Point(541, 379);
            this.btnUpDownUpbtnTopCylinder_Down.Name = "btnUpDownUpbtnTopCylinder_Down";
            this.btnUpDownUpbtnTopCylinder_Down.Size = new System.Drawing.Size(140, 34);
            this.btnUpDownUpbtnTopCylinder_Down.TabIndex = 252;
            this.btnUpDownUpbtnTopCylinder_Down.Text = "横移顶升下降";
            this.btnUpDownUpbtnTopCylinder_Down.UseVisualStyleBackColor = false;
            this.btnUpDownUpbtnTopCylinder_Down.Visible = false;
            this.btnUpDownUpbtnTopCylinder_Down.Click += new System.EventHandler(this.btnUpDownUp_Click);
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.groupDetial);
            this.tabPage2.Controls.Add(this.groupBox2);
            this.tabPage2.Controls.Add(this.axisMoveControl1);
            this.tabPage2.Location = new System.Drawing.Point(4, 26);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(1235, 515);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "伺服调试";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // groupDetial
            // 
            this.groupDetial.Controls.Add(this.btnDSave);
            this.groupDetial.Controls.Add(this.label3);
            this.groupDetial.Controls.Add(this.txtDP2);
            this.groupDetial.Controls.Add(this.listDetitalP2);
            this.groupDetial.Controls.Add(this.cmbDHeight);
            this.groupDetial.Controls.Add(this.label2);
            this.groupDetial.Controls.Add(this.cmbDSize);
            this.groupDetial.Controls.Add(this.label1);
            this.groupDetial.Location = new System.Drawing.Point(577, 180);
            this.groupDetial.Name = "groupDetial";
            this.groupDetial.Size = new System.Drawing.Size(537, 205);
            this.groupDetial.TabIndex = 318;
            this.groupDetial.TabStop = false;
            this.groupDetial.Text = "移栽位置P2详细配置";
            // 
            // btnDSave
            // 
            this.btnDSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnDSave.ForeColor = System.Drawing.Color.Blue;
            this.btnDSave.Location = new System.Drawing.Point(108, 150);
            this.btnDSave.Name = "btnDSave";
            this.btnDSave.Size = new System.Drawing.Size(94, 34);
            this.btnDSave.TabIndex = 322;
            this.btnDSave.Text = "保存";
            this.btnDSave.UseVisualStyleBackColor = true;
            this.btnDSave.Click += new System.EventHandler(this.btnDSave_Click);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label3.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label3.Location = new System.Drawing.Point(9, 111);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(94, 17);
            this.label3.TabIndex = 321;
            this.label3.Text = "升降轴P2位置:";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtDP2
            // 
            this.txtDP2.BackColor = System.Drawing.SystemColors.Window;
            this.txtDP2.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.txtDP2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtDP2.ForeColor = System.Drawing.SystemColors.WindowText;
            this.txtDP2.Location = new System.Drawing.Point(108, 105);
            this.txtDP2.MaxLength = 12;
            this.txtDP2.Name = "txtDP2";
            this.txtDP2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.txtDP2.Size = new System.Drawing.Size(90, 26);
            this.txtDP2.TabIndex = 320;
            this.txtDP2.Text = "-1";
            // 
            // listDetitalP2
            // 
            this.listDetitalP2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.listDetitalP2.FormattingEnabled = true;
            this.listDetitalP2.ItemHeight = 20;
            this.listDetitalP2.Location = new System.Drawing.Point(231, 27);
            this.listDetitalP2.Name = "listDetitalP2";
            this.listDetitalP2.Size = new System.Drawing.Size(270, 164);
            this.listDetitalP2.TabIndex = 319;
            this.listDetitalP2.SelectedIndexChanged += new System.EventHandler(this.listDetitalP2_SelectedIndexChanged);
            // 
            // cmbDHeight
            // 
            this.cmbDHeight.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbDHeight.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmbDHeight.FormattingEnabled = true;
            this.cmbDHeight.Location = new System.Drawing.Point(108, 67);
            this.cmbDHeight.Name = "cmbDHeight";
            this.cmbDHeight.Size = new System.Drawing.Size(90, 28);
            this.cmbDHeight.TabIndex = 318;
            this.cmbDHeight.SelectedIndexChanged += new System.EventHandler(this.cmbDHeight_SelectedIndexChanged);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label2.Location = new System.Drawing.Point(9, 73);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(68, 17);
            this.label2.TabIndex = 317;
            this.label2.Text = "料盘高度:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmbDSize
            // 
            this.cmbDSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbDSize.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmbDSize.FormattingEnabled = true;
            this.cmbDSize.Location = new System.Drawing.Point(108, 29);
            this.cmbDSize.Name = "cmbDSize";
            this.cmbDSize.Size = new System.Drawing.Size(90, 28);
            this.cmbDSize.TabIndex = 316;
            this.cmbDSize.SelectedIndexChanged += new System.EventHandler(this.cmbDHeight_SelectedIndexChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label1.Location = new System.Drawing.Point(9, 35);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(68, 17);
            this.label1.TabIndex = 315;
            this.label1.Text = "料盘尺寸:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.btnP3);
            this.groupBox2.Controls.Add(this.txtP3);
            this.groupBox2.Controls.Add(this.btnSave);
            this.groupBox2.Controls.Add(this.txtP1);
            this.groupBox2.Controls.Add(this.btnMoveToP1);
            this.groupBox2.Controls.Add(this.cmbSizeList);
            this.groupBox2.Controls.Add(this.label4);
            this.groupBox2.Controls.Add(this.btnP2);
            this.groupBox2.Controls.Add(this.txtP2);
            this.groupBox2.Location = new System.Drawing.Point(577, 6);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(538, 168);
            this.groupBox2.TabIndex = 219;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "升降轴位置配置";
            // 
            // btnP3
            // 
            this.btnP3.BackColor = System.Drawing.SystemColors.Control;
            this.btnP3.Cursor = System.Windows.Forms.Cursors.Default;
            this.btnP3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnP3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnP3.ForeColor = System.Drawing.Color.Blue;
            this.btnP3.Location = new System.Drawing.Point(273, 64);
            this.btnP3.Name = "btnP3";
            this.btnP3.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnP3.Size = new System.Drawing.Size(163, 34);
            this.btnP3.TabIndex = 312;
            this.btnP3.Text = "出料皮带线位置P3";
            this.btnP3.UseVisualStyleBackColor = true;
            this.btnP3.Click += new System.EventHandler(this.btnBoxP_Click);
            // 
            // txtP3
            // 
            this.txtP3.BackColor = System.Drawing.SystemColors.Window;
            this.txtP3.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.txtP3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtP3.ForeColor = System.Drawing.SystemColors.WindowText;
            this.txtP3.Location = new System.Drawing.Point(439, 68);
            this.txtP3.MaxLength = 12;
            this.txtP3.Name = "txtP3";
            this.txtP3.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.txtP3.Size = new System.Drawing.Size(87, 26);
            this.txtP3.TabIndex = 311;
            this.txtP3.Text = "-1";
            // 
            // btnSave
            // 
            this.btnSave.BackColor = System.Drawing.SystemColors.Control;
            this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSave.ForeColor = System.Drawing.Color.Blue;
            this.btnSave.Location = new System.Drawing.Point(204, 114);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(110, 34);
            this.btnSave.TabIndex = 310;
            this.btnSave.Text = "保存位置";
            this.btnSave.UseVisualStyleBackColor = false;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // txtP1
            // 
            this.txtP1.BackColor = System.Drawing.SystemColors.Window;
            this.txtP1.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.txtP1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtP1.ForeColor = System.Drawing.SystemColors.WindowText;
            this.txtP1.Location = new System.Drawing.Point(439, 28);
            this.txtP1.MaxLength = 12;
            this.txtP1.Name = "txtP1";
            this.txtP1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.txtP1.Size = new System.Drawing.Size(87, 26);
            this.txtP1.TabIndex = 309;
            this.txtP1.Text = "-1";
            // 
            // btnMoveToP1
            // 
            this.btnMoveToP1.BackColor = System.Drawing.SystemColors.Control;
            this.btnMoveToP1.Cursor = System.Windows.Forms.Cursors.Default;
            this.btnMoveToP1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnMoveToP1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnMoveToP1.ForeColor = System.Drawing.Color.Blue;
            this.btnMoveToP1.Location = new System.Drawing.Point(272, 24);
            this.btnMoveToP1.Name = "btnMoveToP1";
            this.btnMoveToP1.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnMoveToP1.Size = new System.Drawing.Size(163, 34);
            this.btnMoveToP1.TabIndex = 307;
            this.btnMoveToP1.Text = "移栽升降轴待机位置P1:";
            this.btnMoveToP1.UseVisualStyleBackColor = true;
            this.btnMoveToP1.Click += new System.EventHandler(this.btnMoveToP1_Click);
            // 
            // cmbSizeList
            // 
            this.cmbSizeList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbSizeList.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmbSizeList.FormattingEnabled = true;
            this.cmbSizeList.Location = new System.Drawing.Point(97, 28);
            this.cmbSizeList.Name = "cmbSizeList";
            this.cmbSizeList.Size = new System.Drawing.Size(168, 28);
            this.cmbSizeList.TabIndex = 303;
            this.cmbSizeList.SelectedIndexChanged += new System.EventHandler(this.cmbSizeList_SelectedIndexChanged);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label4.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.label4.Location = new System.Drawing.Point(17, 34);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(68, 17);
            this.label4.TabIndex = 302;
            this.label4.Text = "料盘尺寸:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // btnP2
            // 
            this.btnP2.BackColor = System.Drawing.SystemColors.Control;
            this.btnP2.Cursor = System.Windows.Forms.Cursors.Default;
            this.btnP2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnP2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnP2.ForeColor = System.Drawing.Color.Blue;
            this.btnP2.Location = new System.Drawing.Point(12, 68);
            this.btnP2.Name = "btnP2";
            this.btnP2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnP2.Size = new System.Drawing.Size(163, 34);
            this.btnP2.TabIndex = 306;
            this.btnP2.Text = "移栽位置P2";
            this.btnP2.UseVisualStyleBackColor = true;
            this.btnP2.Click += new System.EventHandler(this.btnMoveto_Click);
            // 
            // txtP2
            // 
            this.txtP2.BackColor = System.Drawing.SystemColors.Window;
            this.txtP2.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.txtP2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtP2.ForeColor = System.Drawing.SystemColors.WindowText;
            this.txtP2.Location = new System.Drawing.Point(178, 72);
            this.txtP2.MaxLength = 12;
            this.txtP2.Name = "txtP2";
            this.txtP2.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.txtP2.Size = new System.Drawing.Size(87, 26);
            this.txtP2.TabIndex = 305;
            this.txtP2.Text = "-1";
            // 
            // axisMoveControl1
            // 
            this.axisMoveControl1.Location = new System.Drawing.Point(5, 3);
            this.axisMoveControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.axisMoveControl1.Name = "axisMoveControl1";
            this.axisMoveControl1.Size = new System.Drawing.Size(566, 427);
            this.axisMoveControl1.TabIndex = 0;
            // 
            // 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.btnClose);
            this.panel1.Controls.Add(this.lblName);
            this.panel1.Controls.Add(this.chbDebug);
            this.panel1.Controls.Add(this.lblStoreStatus);
            this.panel1.Controls.Add(this.btnOutStore);
            this.panel1.Controls.Add(this.btnStart);
            this.panel1.Controls.Add(this.btnStop);
            this.panel1.Controls.Add(this.btnReset);
            this.panel1.Location = new System.Drawing.Point(2, 1);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1242, 58);
            this.panel1.TabIndex = 258;
            // 
            // btnClose
            // 
            this.btnClose.BackColor = System.Drawing.Color.White;
            this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnClose.Location = new System.Drawing.Point(1109, 13);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(110, 40);
            this.btnClose.TabIndex = 260;
            this.btnClose.Text = "返回";
            this.btnClose.UseVisualStyleBackColor = false;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // 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, 13);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(180, 40);
            this.lblName.TabIndex = 259;
            this.lblName.Text = "HY";
            this.lblName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // FrmHYEquip
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1254, 611);
            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 = "FrmHYEquip";
            this.Text = "出料移栽——";
            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.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            this.groupDetial.ResumeLayout(false);
            this.groupDetial.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
        private System.Windows.Forms.GroupBox groupBox4;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.ComboBox cmbWriteIO;
        private System.Windows.Forms.TextBox txtSlaveId;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.Button btnTopCylinder_UP;
        private System.Windows.Forms.Button btnLineBackRun;
        private System.Windows.Forms.Label lblThisSta;
        private System.Windows.Forms.Label lblStoreStatus;
        private System.Windows.Forms.Button btnStart;
        private System.Windows.Forms.Button btnStop;
        private System.Windows.Forms.Button btnReset;
        private System.Windows.Forms.Button btnOutStore;
        private System.Windows.Forms.CheckBox chbDebug;
        private System.Windows.Forms.Button btnStopDown;
        private System.Windows.Forms.Button btnLineRun;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Button btnCloseAll;
        private System.Windows.Forms.Label lblTrayNum;
        private System.Windows.Forms.GroupBox groupBox6;
        private System.Windows.Forms.Label lblInstoreList;
        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.TabPage tabPage2;
        private AxisMoveControl axisMoveControl1;
        private System.Windows.Forms.GroupBox groupBox2;
        internal System.Windows.Forms.Button btnP3;
        internal System.Windows.Forms.TextBox txtP3;
        private System.Windows.Forms.Button btnSave;
        internal System.Windows.Forms.TextBox txtP1;
        internal System.Windows.Forms.Button btnMoveToP1;
        private System.Windows.Forms.ComboBox cmbSizeList;
        private System.Windows.Forms.Label label4;
        internal System.Windows.Forms.Button btnP2;
        internal System.Windows.Forms.TextBox txtP2;
        private System.Windows.Forms.Label lblName;
        private System.Windows.Forms.Label lblMoveInfo;
        private System.Windows.Forms.GroupBox groupDetial;
        private System.Windows.Forms.Button btnDSave;
        private System.Windows.Forms.Label label3;
        internal System.Windows.Forms.TextBox txtDP2;
        private System.Windows.Forms.ListBox listDetitalP2;
        private System.Windows.Forms.ComboBox cmbDHeight;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.ComboBox cmbDSize;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.Button btnLocation_Up;
        private System.Windows.Forms.Button btnLocation_Down;
        private System.Windows.Forms.Button btnFrontStopDown;
        private System.Windows.Forms.Button btnClampWork;
        private System.Windows.Forms.Button btnClampRelax;
        private System.Windows.Forms.Button btnMoveTake;
        private System.Windows.Forms.Button btnMoveGive;
        private System.Windows.Forms.Button btnUpDownUpbtnTopCylinder_Down;
    }
}