FrmLineStore.Designer.cs 58.8 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
namespace OnlineStore.AssemblyLine
{
    partial class FrmLineStore
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLineStore));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.numTrayNum = new System.Windows.Forms.NumericUpDown();
            this.btnClear = new System.Windows.Forms.Button();
            this.label10 = new System.Windows.Forms.Label();
            this.lblSelTrayNum = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.chbSaveImage = new System.Windows.Forms.CheckBox();
            this.btnShunt2Reset = new System.Windows.Forms.Button();
            this.btnShuntReset = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.chbShunt = new System.Windows.Forms.CheckBox();
            this.chbShunt2 = new System.Windows.Forms.CheckBox();
            this.chbTrayCheck = new System.Windows.Forms.CheckBox();
            this.chbBuzzer = new System.Windows.Forms.CheckBox();
            this.btnClearLog = new System.Windows.Forms.Button();
            this.chbAGV = new System.Windows.Forms.CheckBox();
            this.chbAutoRun = new System.Windows.Forms.CheckBox();
            this.lblCID = new System.Windows.Forms.Label();
            this.lblMoveInfo = new System.Windows.Forms.Label();
            this.listView1 = new System.Windows.Forms.ListView();
            this.logBox = new System.Windows.Forms.RichTextBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.chbInStoNG = new System.Windows.Forms.CheckBox();
            this.cmbTrayType = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.txtTrayW = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtTrayH = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtTrayPosid = new System.Windows.Forms.TextBox();
            this.cmbTray = new System.Windows.Forms.ComboBox();
            this.btnUpdateTray = new System.Windows.Forms.Button();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.picLine = new System.Windows.Forms.PictureBox();
            this.lblStatus = new System.Windows.Forms.Label();
            this.lblWarnMsg = new System.Windows.Forms.Label();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.操作ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.启动AToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.复位RToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.停止TToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.设置TToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.二维码学习ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.托盘初始化ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
            this.iO模块状态ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
            this.查看托盘信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
            this.清空托盘信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.清空日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
            this.复制日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
            this.版本号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.运行参数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.开机自动启动ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
            this.启用蜂鸣器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
            this.aGVCancelStateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
            this.启用分流横移1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
            this.启用分流横移2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
            this.自动保存托盘信息ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numTrayNum)).BeginInit();
            this.panel1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLine)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // 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.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
            this.tabControl1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.tabControl1.Location = new System.Drawing.Point(8, 81);
            this.tabControl1.Multiline = true;
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1336, 642);
            this.tabControl1.TabIndex = 0;
            this.tabControl1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.tabControl1_DrawItem);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.panel1);
            this.tabPage1.Controls.Add(this.groupBox2);
            this.tabPage1.Controls.Add(this.lblCID);
            this.tabPage1.Controls.Add(this.lblMoveInfo);
            this.tabPage1.Controls.Add(this.listView1);
            this.tabPage1.Controls.Add(this.logBox);
            this.tabPage1.Controls.Add(this.groupBox3);
            this.tabPage1.Location = new System.Drawing.Point(4, 29);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(1328, 609);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "状态信息";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.numTrayNum);
            this.groupBox1.Controls.Add(this.btnClear);
            this.groupBox1.Controls.Add(this.label10);
            this.groupBox1.Controls.Add(this.lblSelTrayNum);
            this.groupBox1.Location = new System.Drawing.Point(720, 148);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(602, 81);
            this.groupBox1.TabIndex = 284;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "托盘信息编辑";
            // 
            // numTrayNum
            // 
            this.numTrayNum.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.numTrayNum.Location = new System.Drawing.Point(66, 29);
            this.numTrayNum.Name = "numTrayNum";
            this.numTrayNum.Size = new System.Drawing.Size(71, 26);
            this.numTrayNum.TabIndex = 283;
            this.numTrayNum.ValueChanged += new System.EventHandler(this.numTrayNum_ValueChanged);
            // 
            // btnClear
            // 
            this.btnClear.BackColor = System.Drawing.Color.White;
            this.btnClear.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnClear.Location = new System.Drawing.Point(142, 25);
            this.btnClear.Name = "btnClear";
            this.btnClear.Size = new System.Drawing.Size(105, 35);
            this.btnClear.TabIndex = 282;
            this.btnClear.Text = "清空此托盘";
            this.btnClear.UseVisualStyleBackColor = false;
            this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(7, 32);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(54, 20);
            this.label10.TabIndex = 207;
            this.label10.Text = "托盘号:";
            // 
            // lblSelTrayNum
            // 
            this.lblSelTrayNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblSelTrayNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblSelTrayNum.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.lblSelTrayNum.Location = new System.Drawing.Point(253, 14);
            this.lblSelTrayNum.Name = "lblSelTrayNum";
            this.lblSelTrayNum.Size = new System.Drawing.Size(341, 61);
            this.lblSelTrayNum.TabIndex = 276;
            this.lblSelTrayNum.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.chbSaveImage);
            this.panel1.Controls.Add(this.btnShunt2Reset);
            this.panel1.Controls.Add(this.btnShuntReset);
            this.panel1.Location = new System.Drawing.Point(720, 4);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(165, 140);
            this.panel1.TabIndex = 199;
            // 
            // chbSaveImage
            // 
            this.chbSaveImage.AutoSize = true;
            this.chbSaveImage.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbSaveImage.Location = new System.Drawing.Point(16, 10);
            this.chbSaveImage.Name = "chbSaveImage";
            this.chbSaveImage.Size = new System.Drawing.Size(112, 24);
            this.chbSaveImage.TabIndex = 203;
            this.chbSaveImage.Text = "保存扫码图片";
            this.chbSaveImage.UseVisualStyleBackColor = true;
            this.chbSaveImage.CheckedChanged += new System.EventHandler(this.chbSaveImage_CheckedChanged);
            // 
            // btnShunt2Reset
            // 
            this.btnShunt2Reset.BackColor = System.Drawing.Color.White;
            this.btnShunt2Reset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnShunt2Reset.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnShunt2Reset.Location = new System.Drawing.Point(16, 88);
            this.btnShunt2Reset.Name = "btnShunt2Reset";
            this.btnShunt2Reset.Size = new System.Drawing.Size(133, 40);
            this.btnShunt2Reset.TabIndex = 201;
            this.btnShunt2Reset.Text = "分流横移2复位";
            this.btnShunt2Reset.UseVisualStyleBackColor = false;
            this.btnShunt2Reset.Click += new System.EventHandler(this.btnShunt2Reset_Click);
            // 
            // btnShuntReset
            // 
            this.btnShuntReset.BackColor = System.Drawing.Color.White;
            this.btnShuntReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnShuntReset.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnShuntReset.Location = new System.Drawing.Point(16, 41);
            this.btnShuntReset.Name = "btnShuntReset";
            this.btnShuntReset.Size = new System.Drawing.Size(133, 40);
            this.btnShuntReset.TabIndex = 199;
            this.btnShuntReset.Text = "分流横移1复位";
            this.btnShuntReset.UseVisualStyleBackColor = false;
            this.btnShuntReset.Click += new System.EventHandler(this.btnShuntReset_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.chbShunt);
            this.groupBox2.Controls.Add(this.chbShunt2);
            this.groupBox2.Controls.Add(this.chbTrayCheck);
            this.groupBox2.Controls.Add(this.chbBuzzer);
            this.groupBox2.Controls.Add(this.btnClearLog);
            this.groupBox2.Controls.Add(this.chbAGV);
            this.groupBox2.Controls.Add(this.chbAutoRun);
            this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.groupBox2.Location = new System.Drawing.Point(395, 32);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(298, 117);
            this.groupBox2.TabIndex = 196;
            this.groupBox2.TabStop = false;
            this.groupBox2.Visible = false;
            // 
            // chbShunt
            // 
            this.chbShunt.AutoSize = true;
            this.chbShunt.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbShunt.Location = new System.Drawing.Point(8, 61);
            this.chbShunt.Name = "chbShunt";
            this.chbShunt.Size = new System.Drawing.Size(120, 24);
            this.chbShunt.TabIndex = 200;
            this.chbShunt.Text = "禁用分流横移1";
            this.chbShunt.UseVisualStyleBackColor = true;
            this.chbShunt.CheckedChanged += new System.EventHandler(this.chbShunt_CheckedChanged);
            // 
            // chbShunt2
            // 
            this.chbShunt2.AutoSize = true;
            this.chbShunt2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbShunt2.Location = new System.Drawing.Point(8, 86);
            this.chbShunt2.Name = "chbShunt2";
            this.chbShunt2.Size = new System.Drawing.Size(120, 24);
            this.chbShunt2.TabIndex = 202;
            this.chbShunt2.Text = "禁用分流横移2";
            this.chbShunt2.UseVisualStyleBackColor = true;
            this.chbShunt2.CheckedChanged += new System.EventHandler(this.chbShunt2_CheckedChanged);
            // 
            // chbTrayCheck
            // 
            this.chbTrayCheck.AutoSize = true;
            this.chbTrayCheck.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbTrayCheck.Location = new System.Drawing.Point(154, 17);
            this.chbTrayCheck.Name = "chbTrayCheck";
            this.chbTrayCheck.Size = new System.Drawing.Size(123, 21);
            this.chbTrayCheck.TabIndex = 197;
            this.chbTrayCheck.Text = "启用托盘顺序检测";
            this.chbTrayCheck.UseVisualStyleBackColor = true;
            this.chbTrayCheck.Visible = false;
            this.chbTrayCheck.CheckedChanged += new System.EventHandler(this.chbTrayCheck_CheckedChanged);
            // 
            // chbBuzzer
            // 
            this.chbBuzzer.AutoSize = true;
            this.chbBuzzer.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbBuzzer.Location = new System.Drawing.Point(8, 39);
            this.chbBuzzer.Name = "chbBuzzer";
            this.chbBuzzer.Size = new System.Drawing.Size(87, 21);
            this.chbBuzzer.TabIndex = 196;
            this.chbBuzzer.Text = "启用蜂鸣器";
            this.chbBuzzer.UseVisualStyleBackColor = true;
            this.chbBuzzer.CheckedChanged += new System.EventHandler(this.chbBuzzer_CheckedChanged);
            // 
            // btnClearLog
            // 
            this.btnClearLog.BackColor = System.Drawing.Color.White;
            this.btnClearLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnClearLog.Location = new System.Drawing.Point(154, 77);
            this.btnClearLog.Name = "btnClearLog";
            this.btnClearLog.Size = new System.Drawing.Size(85, 35);
            this.btnClearLog.TabIndex = 190;
            this.btnClearLog.Text = "清空日志";
            this.btnClearLog.UseVisualStyleBackColor = false;
            this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click);
            // 
            // chbAGV
            // 
            this.chbAGV.AutoSize = true;
            this.chbAGV.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbAGV.Location = new System.Drawing.Point(154, 47);
            this.chbAGV.Name = "chbAGV";
            this.chbAGV.Size = new System.Drawing.Size(121, 21);
            this.chbAGV.TabIndex = 198;
            this.chbAGV.Text = "AGV cancelState";
            this.chbAGV.UseVisualStyleBackColor = true;
            this.chbAGV.Visible = false;
            this.chbAGV.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            // 
            // chbAutoRun
            // 
            this.chbAutoRun.AutoSize = true;
            this.chbAutoRun.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.chbAutoRun.Location = new System.Drawing.Point(8, 17);
            this.chbAutoRun.Name = "chbAutoRun";
            this.chbAutoRun.Size = new System.Drawing.Size(99, 21);
            this.chbAutoRun.TabIndex = 94;
            this.chbAutoRun.Text = "开机自动启动";
            this.chbAutoRun.UseVisualStyleBackColor = true;
            this.chbAutoRun.CheckedChanged += new System.EventHandler(this.chbAutoRun_CheckedChanged);
            // 
            // lblCID
            // 
            this.lblCID.AutoSize = true;
            this.lblCID.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblCID.Location = new System.Drawing.Point(1230, 7);
            this.lblCID.Name = "lblCID";
            this.lblCID.Size = new System.Drawing.Size(33, 20);
            this.lblCID.TabIndex = 95;
            this.lblCID.Text = "CID";
            this.lblCID.Visible = false;
            // 
            // 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.Location = new System.Drawing.Point(906, 9);
            this.lblMoveInfo.Name = "lblMoveInfo";
            this.lblMoveInfo.Size = new System.Drawing.Size(29, 17);
            this.lblMoveInfo.TabIndex = 196;
            this.lblMoveInfo.Text = "CID";
            // 
            // listView1
            // 
            this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.listView1.BackColor = System.Drawing.Color.White;
            this.listView1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.listView1.FullRowSelect = true;
            this.listView1.GridLines = true;
            this.listView1.HideSelection = false;
            this.listView1.Location = new System.Drawing.Point(9, 7);
            this.listView1.MultiSelect = false;
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(705, 599);
            this.listView1.TabIndex = 191;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
            // 
            // logBox
            // 
            this.logBox.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.logBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.logBox.Location = new System.Drawing.Point(720, 235);
            this.logBox.Name = "logBox";
            this.logBox.Size = new System.Drawing.Size(600, 371);
            this.logBox.TabIndex = 106;
            this.logBox.Text = "";
            this.logBox.VisibleChanged += new System.EventHandler(this.logBox_VisibleChanged);
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.chbInStoNG);
            this.groupBox3.Controls.Add(this.cmbTrayType);
            this.groupBox3.Controls.Add(this.label4);
            this.groupBox3.Controls.Add(this.txtTrayW);
            this.groupBox3.Controls.Add(this.label3);
            this.groupBox3.Controls.Add(this.txtTrayH);
            this.groupBox3.Controls.Add(this.label2);
            this.groupBox3.Controls.Add(this.txtTrayPosid);
            this.groupBox3.Controls.Add(this.cmbTray);
            this.groupBox3.Controls.Add(this.btnUpdateTray);
            this.groupBox3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.groupBox3.Location = new System.Drawing.Point(720, 275);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(600, 61);
            this.groupBox3.TabIndex = 197;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "操作信息";
            this.groupBox3.Visible = false;
            // 
            // chbInStoNG
            // 
            this.chbInStoNG.AutoSize = true;
            this.chbInStoNG.Location = new System.Drawing.Point(414, 24);
            this.chbInStoNG.Name = "chbInStoNG";
            this.chbInStoNG.Size = new System.Drawing.Size(70, 21);
            this.chbInStoNG.TabIndex = 205;
            this.chbInStoNG.Text = "入库NG";
            this.chbInStoNG.UseVisualStyleBackColor = true;
            // 
            // cmbTrayType
            // 
            this.cmbTrayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbTrayType.FormattingEnabled = true;
            this.cmbTrayType.Items.AddRange(new object[] {
            "无",
            "入库",
            "出库"});
            this.cmbTrayType.Location = new System.Drawing.Point(64, 22);
            this.cmbTrayType.Name = "cmbTrayType";
            this.cmbTrayType.Size = new System.Drawing.Size(78, 25);
            this.cmbTrayType.TabIndex = 204;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(354, 26);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(23, 17);
            this.label4.TabIndex = 203;
            this.label4.Text = "宽:";
            // 
            // txtTrayW
            // 
            this.txtTrayW.Location = new System.Drawing.Point(381, 23);
            this.txtTrayW.MaxLength = 2;
            this.txtTrayW.Name = "txtTrayW";
            this.txtTrayW.Size = new System.Drawing.Size(29, 23);
            this.txtTrayW.TabIndex = 202;
            this.txtTrayW.Text = "7";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(294, 26);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(23, 17);
            this.label3.TabIndex = 201;
            this.label3.Text = "高:";
            // 
            // txtTrayH
            // 
            this.txtTrayH.Location = new System.Drawing.Point(321, 23);
            this.txtTrayH.MaxLength = 2;
            this.txtTrayH.Name = "txtTrayH";
            this.txtTrayH.Size = new System.Drawing.Size(29, 23);
            this.txtTrayH.TabIndex = 200;
            this.txtTrayH.Text = "8";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(146, 26);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(35, 17);
            this.label2.TabIndex = 199;
            this.label2.Text = "库位:";
            // 
            // txtTrayPosid
            // 
            this.txtTrayPosid.Location = new System.Drawing.Point(185, 23);
            this.txtTrayPosid.Name = "txtTrayPosid";
            this.txtTrayPosid.Size = new System.Drawing.Size(105, 23);
            this.txtTrayPosid.TabIndex = 198;
            this.txtTrayPosid.Text = "11#AC1_1_1";
            // 
            // cmbTray
            // 
            this.cmbTray.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbTray.FormattingEnabled = true;
            this.cmbTray.Location = new System.Drawing.Point(9, 22);
            this.cmbTray.Name = "cmbTray";
            this.cmbTray.Size = new System.Drawing.Size(51, 25);
            this.cmbTray.TabIndex = 194;
            // 
            // btnUpdateTray
            // 
            this.btnUpdateTray.BackColor = System.Drawing.Color.White;
            this.btnUpdateTray.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnUpdateTray.Location = new System.Drawing.Point(488, 17);
            this.btnUpdateTray.Name = "btnUpdateTray";
            this.btnUpdateTray.Size = new System.Drawing.Size(105, 35);
            this.btnUpdateTray.TabIndex = 192;
            this.btnUpdateTray.Text = "更新托盘";
            this.btnUpdateTray.UseVisualStyleBackColor = false;
            this.btnUpdateTray.Click += new System.EventHandler(this.btnUpdateTray_Click);
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.picLine);
            this.tabPage2.Location = new System.Drawing.Point(4, 29);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(1328, 609);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = " 示意图 ";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // picLine
            // 
            this.picLine.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picLine.Location = new System.Drawing.Point(0, 0);
            this.picLine.Name = "picLine";
            this.picLine.Size = new System.Drawing.Size(1328, 609);
            this.picLine.TabIndex = 0;
            this.picLine.TabStop = false;
            // 
            // lblStatus
            // 
            this.lblStatus.AutoSize = true;
            this.lblStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblStatus.ForeColor = System.Drawing.Color.Green;
            this.lblStatus.Location = new System.Drawing.Point(29, 46);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(65, 20);
            this.lblStatus.TabIndex = 92;
            this.lblStatus.Text = "等待启动";
            // 
            // lblWarnMsg
            // 
            this.lblWarnMsg.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblWarnMsg.AutoEllipsis = true;
            this.lblWarnMsg.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblWarnMsg.ForeColor = System.Drawing.Color.Red;
            this.lblWarnMsg.Location = new System.Drawing.Point(351, 3);
            this.lblWarnMsg.Name = "lblWarnMsg";
            this.lblWarnMsg.Size = new System.Drawing.Size(985, 75);
            this.lblWarnMsg.TabIndex = 96;
            this.lblWarnMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Text = "流水线料仓";
            this.notifyIcon1.Visible = true;
            this.notifyIcon1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseDoubleClick);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.显示ToolStripMenuItem,
            this.toolStripSeparator8,
            this.toolStripMenuItem1});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(113, 62);
            // 
            // 显示ToolStripMenuItem
            // 
            this.显示ToolStripMenuItem.Name = "显示ToolStripMenuItem";
            this.显示ToolStripMenuItem.Size = new System.Drawing.Size(112, 26);
            this.显示ToolStripMenuItem.Text = "显示";
            this.显示ToolStripMenuItem.Click += new System.EventHandler(this.显示ToolStripMenuItem_Click);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(109, 6);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(112, 26);
            this.toolStripMenuItem1.Text = "退出";
            this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 2000;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // 操作ToolStripMenuItem
            // 
            this.操作ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator1,
            this.启动AToolStripMenuItem,
            this.toolStripSeparator4,
            this.复位RToolStripMenuItem,
            this.toolStripSeparator3,
            this.停止TToolStripMenuItem,
            this.toolStripSeparator5,
            this.toolStripSeparator2,
            this.退出ToolStripMenuItem});
            this.操作ToolStripMenuItem.Name = "操作ToolStripMenuItem";
            this.操作ToolStripMenuItem.Size = new System.Drawing.Size(96, 25);
            this.操作ToolStripMenuItem.Text = " 设备操作 ";
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(114, 6);
            // 
            // 启动AToolStripMenuItem
            // 
            this.启动AToolStripMenuItem.Name = "启动AToolStripMenuItem";
            this.启动AToolStripMenuItem.Size = new System.Drawing.Size(117, 26);
            this.启动AToolStripMenuItem.Text = "启动 ";
            this.启动AToolStripMenuItem.Click += new System.EventHandler(this.启动所有料仓AToolStripMenuItem_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(114, 6);
            // 
            // 复位RToolStripMenuItem
            // 
            this.复位RToolStripMenuItem.Name = "复位RToolStripMenuItem";
            this.复位RToolStripMenuItem.Size = new System.Drawing.Size(117, 26);
            this.复位RToolStripMenuItem.Text = "复位";
            this.复位RToolStripMenuItem.Click += new System.EventHandler(this.复位RToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(114, 6);
            // 
            // 停止TToolStripMenuItem
            // 
            this.停止TToolStripMenuItem.Name = "停止TToolStripMenuItem";
            this.停止TToolStripMenuItem.Size = new System.Drawing.Size(117, 26);
            this.停止TToolStripMenuItem.Text = "停止";
            this.停止TToolStripMenuItem.Click += new System.EventHandler(this.停止所有料仓TToolStripMenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(114, 6);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(114, 6);
            this.toolStripSeparator2.Visible = false;
            // 
            // 退出ToolStripMenuItem
            // 
            this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
            this.退出ToolStripMenuItem.Size = new System.Drawing.Size(117, 26);
            this.退出ToolStripMenuItem.Text = "退出";
            this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click_1);
            // 
            // 设置TToolStripMenuItem
            // 
            this.设置TToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator6,
            this.二维码学习ToolStripMenuItem,
            this.toolStripSeparator7,
            this.iO模块状态ToolStripMenuItem,
            this.toolStripSeparator9,
            this.toolStripMenuItem3,
            this.托盘初始化ToolStripMenuItem,
            this.toolStripSeparator14,
            this.查看托盘信息ToolStripMenuItem,
            this.toolStripSeparator12,
            this.清空托盘信息ToolStripMenuItem});
            this.设置TToolStripMenuItem.Name = "设置TToolStripMenuItem";
            this.设置TToolStripMenuItem.Size = new System.Drawing.Size(91, 25);
            this.设置TToolStripMenuItem.Text = "设备调试 ";
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(177, 6);
            this.toolStripSeparator6.Visible = false;
            // 
            // 二维码学习ToolStripMenuItem
            // 
            this.二维码学习ToolStripMenuItem.Name = "二维码学习ToolStripMenuItem";
            this.二维码学习ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
            this.二维码学习ToolStripMenuItem.Text = "二维码学习";
            this.二维码学习ToolStripMenuItem.Click += new System.EventHandler(this.二维码学习ToolStripMenuItem_Click);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(177, 6);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(180, 26);
            this.toolStripMenuItem3.Text = "查看禁用托盘";
            this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
            // 
            // 托盘初始化ToolStripMenuItem
            // 
            this.托盘初始化ToolStripMenuItem.Name = "托盘初始化ToolStripMenuItem";
            this.托盘初始化ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
            this.托盘初始化ToolStripMenuItem.Text = "托盘编码";
            this.托盘初始化ToolStripMenuItem.Visible = false;
            this.托盘初始化ToolStripMenuItem.Click += new System.EventHandler(this.托盘初始化ToolStripMenuItem_Click);
            // 
            // toolStripSeparator9
            // 
            this.toolStripSeparator9.Name = "toolStripSeparator9";
            this.toolStripSeparator9.Size = new System.Drawing.Size(177, 6);
            // 
            // iO模块状态ToolStripMenuItem
            // 
            this.iO模块状态ToolStripMenuItem.Name = "iO模块状态ToolStripMenuItem";
            this.iO模块状态ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
            this.iO模块状态ToolStripMenuItem.Text = "IO模块状态";
            this.iO模块状态ToolStripMenuItem.Click += new System.EventHandler(this.iO模块状态ToolStripMenuItem_Click);
            // 
            // toolStripSeparator14
            // 
            this.toolStripSeparator14.Name = "toolStripSeparator14";
            this.toolStripSeparator14.Size = new System.Drawing.Size(177, 6);
            // 
            // 查看托盘信息ToolStripMenuItem
            // 
            this.查看托盘信息ToolStripMenuItem.Name = "查看托盘信息ToolStripMenuItem";
            this.查看托盘信息ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
            this.查看托盘信息ToolStripMenuItem.Text = "查看托盘信息";
            this.查看托盘信息ToolStripMenuItem.Click += new System.EventHandler(this.btnTrayInfo_Click);
            // 
            // toolStripSeparator12
            // 
            this.toolStripSeparator12.Name = "toolStripSeparator12";
            this.toolStripSeparator12.Size = new System.Drawing.Size(177, 6);
            // 
            // 清空托盘信息ToolStripMenuItem
            // 
            this.清空托盘信息ToolStripMenuItem.Name = "清空托盘信息ToolStripMenuItem";
            this.清空托盘信息ToolStripMenuItem.Size = new System.Drawing.Size(180, 26);
            this.清空托盘信息ToolStripMenuItem.Text = "清空托盘信息";
            this.清空托盘信息ToolStripMenuItem.Click += new System.EventHandler(this.清空托盘信息ToolStripMenuItem_Click);
            // 
            // 帮助ToolStripMenuItem
            // 
            this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.清空日志ToolStripMenuItem,
            this.toolStripSeparator10,
            this.复制日志ToolStripMenuItem,
            this.toolStripSeparator11,
            this.版本号ToolStripMenuItem});
            this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
            this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(69, 25);
            this.帮助ToolStripMenuItem.Text = " 系统  ";
            // 
            // 清空日志ToolStripMenuItem
            // 
            this.清空日志ToolStripMenuItem.Name = "清空日志ToolStripMenuItem";
            this.清空日志ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
            this.清空日志ToolStripMenuItem.Text = "清空日志";
            this.清空日志ToolStripMenuItem.Click += new System.EventHandler(this.清空日志ToolStripMenuItem_Click);
            // 
            // toolStripSeparator10
            // 
            this.toolStripSeparator10.Name = "toolStripSeparator10";
            this.toolStripSeparator10.Size = new System.Drawing.Size(141, 6);
            // 
            // 复制日志ToolStripMenuItem
            // 
            this.复制日志ToolStripMenuItem.Name = "复制日志ToolStripMenuItem";
            this.复制日志ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
            this.复制日志ToolStripMenuItem.Text = "复制日志";
            this.复制日志ToolStripMenuItem.Click += new System.EventHandler(this.复制日志ToolStripMenuItem_Click);
            // 
            // toolStripSeparator11
            // 
            this.toolStripSeparator11.Name = "toolStripSeparator11";
            this.toolStripSeparator11.Size = new System.Drawing.Size(141, 6);
            // 
            // 版本号ToolStripMenuItem
            // 
            this.版本号ToolStripMenuItem.Name = "版本号ToolStripMenuItem";
            this.版本号ToolStripMenuItem.Size = new System.Drawing.Size(144, 26);
            this.版本号ToolStripMenuItem.Text = "关于软件";
            this.版本号ToolStripMenuItem.Click += new System.EventHandler(this.版本号ToolStripMenuItem_Click);
            // 
            // menuStrip1
            // 
            this.menuStrip1.BackColor = System.Drawing.Color.White;
            this.menuStrip1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.操作ToolStripMenuItem,
            this.运行参数ToolStripMenuItem,
            this.设置TToolStripMenuItem,
            this.帮助ToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(1350, 29);
            this.menuStrip1.TabIndex = 4;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // 运行参数ToolStripMenuItem
            // 
            this.运行参数ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.开机自动启动ToolStripMenuItem,
            this.toolStripSeparator15,
            this.启用蜂鸣器ToolStripMenuItem,
            this.toolStripSeparator16,
            this.aGVCancelStateToolStripMenuItem,
            this.toolStripSeparator17,
            this.启用分流横移1ToolStripMenuItem,
            this.toolStripSeparator18,
            this.启用分流横移2ToolStripMenuItem,
            this.toolStripSeparator19,
            this.自动保存托盘信息ToolStripMenuItem});
            this.运行参数ToolStripMenuItem.Name = "运行参数ToolStripMenuItem";
            this.运行参数ToolStripMenuItem.Size = new System.Drawing.Size(86, 25);
            this.运行参数ToolStripMenuItem.Text = "运行参数";
            // 
            // 开机自动启动ToolStripMenuItem
            // 
            this.开机自动启动ToolStripMenuItem.Name = "开机自动启动ToolStripMenuItem";
            this.开机自动启动ToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.开机自动启动ToolStripMenuItem.Text = "开机自动启动";
            this.开机自动启动ToolStripMenuItem.Click += new System.EventHandler(this.开机自动启动ToolStripMenuItem_Click);
            // 
            // toolStripSeparator15
            // 
            this.toolStripSeparator15.Name = "toolStripSeparator15";
            this.toolStripSeparator15.Size = new System.Drawing.Size(205, 6);
            // 
            // 启用蜂鸣器ToolStripMenuItem
            // 
            this.启用蜂鸣器ToolStripMenuItem.Name = "启用蜂鸣器ToolStripMenuItem";
            this.启用蜂鸣器ToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.启用蜂鸣器ToolStripMenuItem.Text = "启用蜂鸣器";
            this.启用蜂鸣器ToolStripMenuItem.Click += new System.EventHandler(this.启用蜂鸣器ToolStripMenuItem_Click);
            // 
            // toolStripSeparator16
            // 
            this.toolStripSeparator16.Name = "toolStripSeparator16";
            this.toolStripSeparator16.Size = new System.Drawing.Size(205, 6);
            // 
            // aGVCancelStateToolStripMenuItem
            // 
            this.aGVCancelStateToolStripMenuItem.Name = "aGVCancelStateToolStripMenuItem";
            this.aGVCancelStateToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.aGVCancelStateToolStripMenuItem.Text = "AGV cancelState";
            this.aGVCancelStateToolStripMenuItem.Click += new System.EventHandler(this.aGVCancelStateToolStripMenuItem_Click);
            // 
            // toolStripSeparator17
            // 
            this.toolStripSeparator17.Name = "toolStripSeparator17";
            this.toolStripSeparator17.Size = new System.Drawing.Size(205, 6);
            // 
            // 启用分流横移1ToolStripMenuItem
            // 
            this.启用分流横移1ToolStripMenuItem.Name = "启用分流横移1ToolStripMenuItem";
            this.启用分流横移1ToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.启用分流横移1ToolStripMenuItem.Text = "✔启用分流横移1";
            this.启用分流横移1ToolStripMenuItem.Click += new System.EventHandler(this.启用分流横移1ToolStripMenuItem_Click);
            // 
            // toolStripSeparator18
            // 
            this.toolStripSeparator18.Name = "toolStripSeparator18";
            this.toolStripSeparator18.Size = new System.Drawing.Size(205, 6);
            // 
            // 启用分流横移2ToolStripMenuItem
            // 
            this.启用分流横移2ToolStripMenuItem.Name = "启用分流横移2ToolStripMenuItem";
            this.启用分流横移2ToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.启用分流横移2ToolStripMenuItem.Text = "✔启用分流横移2";
            this.启用分流横移2ToolStripMenuItem.Click += new System.EventHandler(this.启用分流横移2ToolStripMenuItem_Click);
            // 
            // toolStripSeparator19
            // 
            this.toolStripSeparator19.Name = "toolStripSeparator19";
            this.toolStripSeparator19.Size = new System.Drawing.Size(205, 6);
            // 
            // 自动保存托盘信息ToolStripMenuItem
            // 
            this.自动保存托盘信息ToolStripMenuItem.Name = "自动保存托盘信息ToolStripMenuItem";
            this.自动保存托盘信息ToolStripMenuItem.Size = new System.Drawing.Size(208, 26);
            this.自动保存托盘信息ToolStripMenuItem.Text = "自动保存托盘信息";
            this.自动保存托盘信息ToolStripMenuItem.Click += new System.EventHandler(this.自动保存托盘信息ToolStripMenuItem_Click);
            // 
            // FrmLineStore
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(1350, 729);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.lblStatus);
            this.Controls.Add(this.lblWarnMsg);
            this.Controls.Add(this.menuStrip1);
            this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "FrmLineStore";
            this.Opacity = 0D;
            this.Text = "流水线系统";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmLineStore_FormClosed);
            this.Load += new System.EventHandler(this.FrmMain_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage1.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numTrayNum)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picLine)).EndInit();
            this.contextMenuStrip1.ResumeLayout(false);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.NotifyIcon notifyIcon1;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 显示ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
        internal System.Windows.Forms.RichTextBox logBox;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.Button btnClearLog;
        private System.Windows.Forms.Label lblStatus;
        private System.Windows.Forms.CheckBox chbAutoRun;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.Label lblCID;
        private System.Windows.Forms.ListView listView1;
        private System.Windows.Forms.Label lblWarnMsg;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
        private System.Windows.Forms.Label lblMoveInfo;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.CheckBox chbInStoNG;
        private System.Windows.Forms.ComboBox cmbTrayType;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.TextBox txtTrayW;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtTrayH;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtTrayPosid;
        private System.Windows.Forms.ComboBox cmbTray;
        private System.Windows.Forms.Button btnUpdateTray; 
        private System.Windows.Forms.CheckBox chbAGV;
        private System.Windows.Forms.CheckBox chbBuzzer;
        private System.Windows.Forms.CheckBox chbTrayCheck;
        private System.Windows.Forms.ToolStripMenuItem 操作ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
        private System.Windows.Forms.ToolStripMenuItem 启动AToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
        private System.Windows.Forms.ToolStripMenuItem 复位RToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
        private System.Windows.Forms.ToolStripMenuItem 停止TToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
        private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 设置TToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
        private System.Windows.Forms.ToolStripMenuItem 二维码学习ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
        private System.Windows.Forms.ToolStripMenuItem 托盘初始化ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
        private System.Windows.Forms.ToolStripMenuItem iO模块状态ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator14;
        private System.Windows.Forms.ToolStripMenuItem 查看托盘信息ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
        private System.Windows.Forms.ToolStripMenuItem 清空托盘信息ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 帮助ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 清空日志ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
        private System.Windows.Forms.ToolStripMenuItem 复制日志ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
        private System.Windows.Forms.ToolStripMenuItem 版本号ToolStripMenuItem;
        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.Button btnShuntReset;
        private System.Windows.Forms.CheckBox chbShunt;
        private System.Windows.Forms.ToolStripMenuItem 运行参数ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 开机自动启动ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 启用蜂鸣器ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator16;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.CheckBox chbShunt2;
        private System.Windows.Forms.Button btnShunt2Reset;
        private System.Windows.Forms.ToolStripMenuItem aGVCancelStateToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
        private System.Windows.Forms.CheckBox chbSaveImage;
        private System.Windows.Forms.TabPage tabPage2;
        private System.Windows.Forms.PictureBox picLine;
        private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.NumericUpDown numTrayNum;
        private System.Windows.Forms.Button btnClear;
        private System.Windows.Forms.Label label10;
        private System.Windows.Forms.Label lblSelTrayNum;
        private System.Windows.Forms.ToolStripMenuItem 启用分流横移1ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator18;
        private System.Windows.Forms.ToolStripMenuItem 启用分流横移2ToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator19;
        private System.Windows.Forms.ToolStripMenuItem 自动保存托盘信息ToolStripMenuItem;
    }
}