FrmBoardInfo.Designer.cs 59.1 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 1090 1091 1092
namespace TSA_V
{
    partial class FrmBoardInfo
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBoardInfo));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.记录为组装坐标ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.更新为组装坐标ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.测试位置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.详情ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.上升ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.下降ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
            this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn();
            this.dataGridViewImageColumn2 = new System.Windows.Forms.DataGridViewImageColumn();
            this.panel1 = new System.Windows.Forms.Panel();
            this.btnCheck = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label8 = new System.Windows.Forms.Label();
            this.label122 = new System.Windows.Forms.Label();
            this.btnUpdate = new System.Windows.Forms.Button();
            this.label9 = new System.Windows.Forms.Label();
            this.txtXUpdate = new System.Windows.Forms.TextBox();
            this.txtYUpdate = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.chbNormal = new System.Windows.Forms.CheckBox();
            this.lblMousePosition = new System.Windows.Forms.Label();
            this.chbShowName = new System.Windows.Forms.CheckBox();
            this.btnSort = new System.Windows.Forms.Button();
            this.btnGoHome = new System.Windows.Forms.Button();
            this.焊点列表 = new System.Windows.Forms.GroupBox();
            this.btnOpenFile = new System.Windows.Forms.Button();
            this.label7 = new System.Windows.Forms.Label();
            this.dgvList = new System.Windows.Forms.DataGridView();
            this.Column_pointNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_PartNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_X = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_NodeX = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_NodeY = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_positionNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_NeedSoldering = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column_WeldTemp = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_WeldTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_NeedCheck = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column_CheckOK = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column_PointType = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_PointSizeX = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_PointSizeY = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_PenWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_ShowText = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column_getPosition = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_MoveTest = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_btnDetail = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_Del = new System.Windows.Forms.DataGridViewLinkColumn();
            this.Column_Up = new System.Windows.Forms.DataGridViewImageColumn();
            this.Column_Down = new System.Windows.Forms.DataGridViewImageColumn();
            this.lblMsg = new System.Windows.Forms.Label();
            this.btnSetOrigin = new System.Windows.Forms.Button();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panBoard = new System.Windows.Forms.Panel();
            this.picBoard = new System.Windows.Forms.PictureBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.lblLineW = new System.Windows.Forms.Label();
            this.txtLineWidth = new System.Windows.Forms.TextBox();
            this.lbllinews = new System.Windows.Forms.Label();
            this.btnConfigAOI = new System.Windows.Forms.Button();
            this.lblAoi = new System.Windows.Forms.Label();
            this.cmbAOIFile = new System.Windows.Forms.ComboBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtCode = new System.Windows.Forms.TextBox();
            this.txtBoardName = new System.Windows.Forms.TextBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtBoardL = new System.Windows.Forms.TextBox();
            this.txtBoardW = new System.Windows.Forms.TextBox();
            this.label25 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.contextMenuStrip1.SuspendLayout();
            this.contextMenuStrip2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.焊点列表.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvList)).BeginInit();
            this.panel3.SuspendLayout();
            this.panBoard.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picBoard)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.记录为组装坐标ToolStripMenuItem,
            this.更新为组装坐标ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(161, 48);
            // 
            // 记录为组装坐标ToolStripMenuItem
            // 
            this.记录为组装坐标ToolStripMenuItem.Name = "记录为组装坐标ToolStripMenuItem";
            this.记录为组装坐标ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.记录为组装坐标ToolStripMenuItem.Text = "更新为组装位置";
            this.记录为组装坐标ToolStripMenuItem.Click += new System.EventHandler(this.记录为组装坐标ToolStripMenuItem_Click);
            // 
            // 更新为组装坐标ToolStripMenuItem
            // 
            this.更新为组装坐标ToolStripMenuItem.Name = "更新为组装坐标ToolStripMenuItem";
            this.更新为组装坐标ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.更新为组装坐标ToolStripMenuItem.Text = "更新为组装位置";
            this.更新为组装坐标ToolStripMenuItem.Click += new System.EventHandler(this.更新为组装坐标ToolStripMenuItem_Click);
            // 
            // contextMenuStrip2
            // 
            this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.测试位置ToolStripMenuItem,
            this.详情ToolStripMenuItem,
            this.删除ToolStripMenuItem,
            this.上升ToolStripMenuItem,
            this.下降ToolStripMenuItem});
            this.contextMenuStrip2.Name = "contextMenuStrip2";
            this.contextMenuStrip2.Size = new System.Drawing.Size(125, 114);
            // 
            // 测试位置ToolStripMenuItem
            // 
            this.测试位置ToolStripMenuItem.Name = "测试位置ToolStripMenuItem";
            this.测试位置ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.测试位置ToolStripMenuItem.Text = "移动测试";
            this.测试位置ToolStripMenuItem.Click += new System.EventHandler(this.测试位置ToolStripMenuItem_Click);
            // 
            // 详情ToolStripMenuItem
            // 
            this.详情ToolStripMenuItem.Name = "详情ToolStripMenuItem";
            this.详情ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.详情ToolStripMenuItem.Text = "详情";
            this.详情ToolStripMenuItem.Click += new System.EventHandler(this.详情ToolStripMenuItem_Click);
            // 
            // 删除ToolStripMenuItem
            // 
            this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
            this.删除ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.删除ToolStripMenuItem.Text = "删除";
            this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
            // 
            // 上升ToolStripMenuItem
            // 
            this.上升ToolStripMenuItem.Name = "上升ToolStripMenuItem";
            this.上升ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.上升ToolStripMenuItem.Text = "上升";
            this.上升ToolStripMenuItem.Click += new System.EventHandler(this.上升ToolStripMenuItem_Click);
            // 
            // 下降ToolStripMenuItem
            // 
            this.下降ToolStripMenuItem.Name = "下降ToolStripMenuItem";
            this.下降ToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.下降ToolStripMenuItem.Text = "下降";
            this.下降ToolStripMenuItem.Click += new System.EventHandler(this.下降ToolStripMenuItem_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 1000;
            this.timer1.Tick += new System.EventHandler(this.timer_Elapsed);
            // 
            // dataGridViewImageColumn1
            // 
            this.dataGridViewImageColumn1.HeaderText = "上升";
            this.dataGridViewImageColumn1.Image = ((System.Drawing.Image)(resources.GetObject("dataGridViewImageColumn1.Image")));
            this.dataGridViewImageColumn1.Name = "dataGridViewImageColumn1";
            this.dataGridViewImageColumn1.Visible = false;
            this.dataGridViewImageColumn1.Width = 50;
            // 
            // dataGridViewImageColumn2
            // 
            this.dataGridViewImageColumn2.HeaderText = "下降";
            this.dataGridViewImageColumn2.Image = ((System.Drawing.Image)(resources.GetObject("dataGridViewImageColumn2.Image")));
            this.dataGridViewImageColumn2.Name = "dataGridViewImageColumn2";
            this.dataGridViewImageColumn2.Visible = false;
            this.dataGridViewImageColumn2.Width = 50;
            // 
            // panel1
            // 
            this.panel1.AutoScroll = true;
            this.panel1.Controls.Add(this.btnOpenFile);
            this.panel1.Controls.Add(this.btnCheck);
            this.panel1.Controls.Add(this.groupBox2);
            this.panel1.Controls.Add(this.chbNormal);
            this.panel1.Controls.Add(this.lblMousePosition);
            this.panel1.Controls.Add(this.chbShowName);
            this.panel1.Controls.Add(this.btnSort);
            this.panel1.Controls.Add(this.btnGoHome);
            this.panel1.Controls.Add(this.焊点列表);
            this.panel1.Controls.Add(this.lblMsg);
            this.panel1.Controls.Add(this.btnSetOrigin);
            this.panel1.Controls.Add(this.panel3);
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Controls.Add(this.button1);
            this.panel1.Controls.Add(this.btnSave);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1549, 701);
            this.panel1.TabIndex = 0;
            // 
            // btnCheck
            // 
            this.btnCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnCheck.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnCheck.Location = new System.Drawing.Point(470, 644);
            this.btnCheck.Name = "btnCheck";
            this.btnCheck.Size = new System.Drawing.Size(120, 45);
            this.btnCheck.TabIndex = 291;
            this.btnCheck.Text = "校准红外坐标";
            this.btnCheck.UseVisualStyleBackColor = true;
            this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.label8);
            this.groupBox2.Controls.Add(this.label122);
            this.groupBox2.Controls.Add(this.btnUpdate);
            this.groupBox2.Controls.Add(this.label9);
            this.groupBox2.Controls.Add(this.txtXUpdate);
            this.groupBox2.Controls.Add(this.txtYUpdate);
            this.groupBox2.Controls.Add(this.label10);
            this.groupBox2.Location = new System.Drawing.Point(851, 80);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(690, 103);
            this.groupBox2.TabIndex = 290;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "图片信息";
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label8.Location = new System.Drawing.Point(266, 71);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(30, 17);
            this.label8.TabIndex = 286;
            this.label8.Text = "mm";
            // 
            // label122
            // 
            this.label122.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label122.AutoSize = true;
            this.label122.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label122.Location = new System.Drawing.Point(266, 28);
            this.label122.Name = "label122";
            this.label122.Size = new System.Drawing.Size(30, 17);
            this.label122.TabIndex = 285;
            this.label122.Text = "mm";
            // 
            // btnUpdate
            // 
            this.btnUpdate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnUpdate.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnUpdate.Location = new System.Drawing.Point(307, 31);
            this.btnUpdate.Name = "btnUpdate";
            this.btnUpdate.Size = new System.Drawing.Size(102, 45);
            this.btnUpdate.TabIndex = 284;
            this.btnUpdate.Text = "更新";
            this.btnUpdate.UseVisualStyleBackColor = false;
            this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
            // 
            // label9
            // 
            this.label9.Location = new System.Drawing.Point(29, 28);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(134, 17);
            this.label9.TabIndex = 280;
            this.label9.Text = "X轴偏移量→:";
            this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtXUpdate
            // 
            this.txtXUpdate.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtXUpdate.Location = new System.Drawing.Point(169, 21);
            this.txtXUpdate.MaxLength = 12;
            this.txtXUpdate.Name = "txtXUpdate";
            this.txtXUpdate.Size = new System.Drawing.Size(89, 29);
            this.txtXUpdate.TabIndex = 281;
            this.txtXUpdate.Text = "0";
            // 
            // txtYUpdate
            // 
            this.txtYUpdate.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtYUpdate.Location = new System.Drawing.Point(169, 63);
            this.txtYUpdate.MaxLength = 12;
            this.txtYUpdate.Name = "txtYUpdate";
            this.txtYUpdate.Size = new System.Drawing.Size(89, 29);
            this.txtYUpdate.TabIndex = 283;
            this.txtYUpdate.Text = "0";
            // 
            // label10
            // 
            this.label10.Location = new System.Drawing.Point(29, 71);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(133, 17);
            this.label10.TabIndex = 282;
            this.label10.Text = "Y轴偏移量↓:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // chbNormal
            // 
            this.chbNormal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chbNormal.AutoSize = true;
            this.chbNormal.Checked = true;
            this.chbNormal.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chbNormal.Location = new System.Drawing.Point(864, 666);
            this.chbNormal.Name = "chbNormal";
            this.chbNormal.Size = new System.Drawing.Size(84, 16);
            this.chbNormal.TabIndex = 281;
            this.chbNormal.Text = "图片自适应";
            this.chbNormal.UseVisualStyleBackColor = true;
            this.chbNormal.CheckedChanged += new System.EventHandler(this.chbNormal_CheckedChanged);
            // 
            // lblMousePosition
            // 
            this.lblMousePosition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lblMousePosition.AutoSize = true;
            this.lblMousePosition.Location = new System.Drawing.Point(1191, 668);
            this.lblMousePosition.Name = "lblMousePosition";
            this.lblMousePosition.Size = new System.Drawing.Size(35, 12);
            this.lblMousePosition.TabIndex = 287;
            this.lblMousePosition.Text = "X坐标";
            // 
            // chbShowName
            // 
            this.chbShowName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.chbShowName.AutoSize = true;
            this.chbShowName.Checked = true;
            this.chbShowName.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chbShowName.Location = new System.Drawing.Point(1005, 666);
            this.chbShowName.Name = "chbShowName";
            this.chbShowName.Size = new System.Drawing.Size(72, 16);
            this.chbShowName.TabIndex = 280;
            this.chbShowName.Text = "显示名称";
            this.chbShowName.UseVisualStyleBackColor = true;
            this.chbShowName.CheckedChanged += new System.EventHandler(this.chbShowName_CheckedChanged);
            // 
            // btnSort
            // 
            this.btnSort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSort.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSort.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnSort.Location = new System.Drawing.Point(348, 644);
            this.btnSort.Name = "btnSort";
            this.btnSort.Size = new System.Drawing.Size(120, 45);
            this.btnSort.TabIndex = 289;
            this.btnSort.Text = "自动排序";
            this.btnSort.UseVisualStyleBackColor = true;
            this.btnSort.Click += new System.EventHandler(this.btnSort_Click);
            // 
            // btnGoHome
            // 
            this.btnGoHome.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnGoHome.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnGoHome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnGoHome.Location = new System.Drawing.Point(38, 619);
            this.btnGoHome.Name = "btnGoHome";
            this.btnGoHome.Size = new System.Drawing.Size(120, 31);
            this.btnGoHome.TabIndex = 277;
            this.btnGoHome.Text = "设备复位";
            this.btnGoHome.UseVisualStyleBackColor = true;
            this.btnGoHome.Visible = false;
            this.btnGoHome.Click += new System.EventHandler(this.btnGoHome_Click_1);
            // 
            // 焊点列表
            // 
            this.焊点列表.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.焊点列表.Controls.Add(this.label7);
            this.焊点列表.Controls.Add(this.dgvList);
            this.焊点列表.Location = new System.Drawing.Point(6, 79);
            this.焊点列表.Name = "焊点列表";
            this.焊点列表.Size = new System.Drawing.Size(838, 554);
            this.焊点列表.TabIndex = 286;
            this.焊点列表.TabStop = false;
            this.焊点列表.Text = "组装信息(使用键盘上的上下键可更改选中行)";
            // 
            // btnOpenFile
            // 
            this.btnOpenFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnOpenFile.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnOpenFile.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnOpenFile.Location = new System.Drawing.Point(1410, 663);
            this.btnOpenFile.Name = "btnOpenFile";
            this.btnOpenFile.Size = new System.Drawing.Size(120, 31);
            this.btnOpenFile.TabIndex = 260;
            this.btnOpenFile.Text = "更改图片";
            this.btnOpenFile.UseVisualStyleBackColor = true;
            this.btnOpenFile.Click += new System.EventHandler(this.btnOpenFile_Click);
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(285, 501);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(209, 12);
            this.label7.TabIndex = 288;
            this.label7.Text = "使用键盘上的左右键可放大或缩小图片";
            this.label7.Visible = false;
            // 
            // dgvList
            // 
            this.dgvList.AllowDrop = true;
            this.dgvList.AllowUserToAddRows = false;
            this.dgvList.AllowUserToDeleteRows = false;
            this.dgvList.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.dgvList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column_pointNum,
            this.Column_PartNum,
            this.Column_Name,
            this.Column_X,
            this.Column_Y,
            this.Column_NodeX,
            this.Column_NodeY,
            this.Column_positionNum,
            this.Column_NeedSoldering,
            this.Column_WeldTemp,
            this.Column_WeldTime,
            this.Column_NeedCheck,
            this.Column_CheckOK,
            this.Column_PointType,
            this.Column_PointSizeX,
            this.Column_PointSizeY,
            this.Column_PenWidth,
            this.Column_ShowText,
            this.Column_getPosition,
            this.Column_MoveTest,
            this.Column_btnDetail,
            this.Column_Del,
            this.Column_Up,
            this.Column_Down});
            this.dgvList.ContextMenuStrip = this.contextMenuStrip2;
            this.dgvList.Location = new System.Drawing.Point(6, 20);
            this.dgvList.MultiSelect = false;
            this.dgvList.Name = "dgvList";
            this.dgvList.ReadOnly = true;
            this.dgvList.RowHeadersWidth = 10;
            this.dgvList.RowTemplate.Height = 23;
            this.dgvList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgvList.Size = new System.Drawing.Size(825, 528);
            this.dgvList.TabIndex = 31;
            this.dgvList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
            this.dgvList.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvList_CellMouseDown);
            this.dgvList.CellMouseMove += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvList_CellMouseMove);
            this.dgvList.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dgvList_RowsAdded);
            this.dgvList.SelectionChanged += new System.EventHandler(this.dgvList_SelectionChanged);
            this.dgvList.DragDrop += new System.Windows.Forms.DragEventHandler(this.dgvList_DragDrop);
            this.dgvList.DragEnter += new System.Windows.Forms.DragEventHandler(this.dgvList_DragEnter);
            // 
            // Column_pointNum
            // 
            this.Column_pointNum.DataPropertyName = "pointNum";
            this.Column_pointNum.HeaderText = "Id";
            this.Column_pointNum.Name = "Column_pointNum";
            this.Column_pointNum.ReadOnly = true;
            this.Column_pointNum.Visible = false;
            this.Column_pointNum.Width = 55;
            // 
            // Column_PartNum
            // 
            this.Column_PartNum.DataPropertyName = "partNum";
            this.Column_PartNum.HeaderText = "编号";
            this.Column_PartNum.Name = "Column_PartNum";
            this.Column_PartNum.ReadOnly = true;
            // 
            // Column_Name
            // 
            this.Column_Name.DataPropertyName = "pointName";
            this.Column_Name.HeaderText = "名称";
            this.Column_Name.Name = "Column_Name";
            this.Column_Name.ReadOnly = true;
            // 
            // Column_X
            // 
            this.Column_X.DataPropertyName = "PositionX";
            this.Column_X.HeaderText = "X";
            this.Column_X.Name = "Column_X";
            this.Column_X.ReadOnly = true;
            this.Column_X.Width = 80;
            // 
            // Column_Y
            // 
            this.Column_Y.DataPropertyName = "PositionY";
            this.Column_Y.HeaderText = "Y";
            this.Column_Y.Name = "Column_Y";
            this.Column_Y.ReadOnly = true;
            this.Column_Y.Width = 80;
            // 
            // Column_NodeX
            // 
            this.Column_NodeX.DataPropertyName = "NodePositionX";
            this.Column_NodeX.HeaderText = "X";
            this.Column_NodeX.Name = "Column_NodeX";
            this.Column_NodeX.ReadOnly = true;
            this.Column_NodeX.Visible = false;
            this.Column_NodeX.Width = 70;
            // 
            // Column_NodeY
            // 
            this.Column_NodeY.DataPropertyName = "NodePositionY";
            this.Column_NodeY.HeaderText = "Y";
            this.Column_NodeY.Name = "Column_NodeY";
            this.Column_NodeY.ReadOnly = true;
            this.Column_NodeY.Visible = false;
            this.Column_NodeY.Width = 70;
            // 
            // Column_positionNum
            // 
            this.Column_positionNum.DataPropertyName = "Column_positionNum";
            this.Column_positionNum.HeaderText = "位置";
            this.Column_positionNum.Name = "Column_positionNum";
            this.Column_positionNum.ReadOnly = true;
            this.Column_positionNum.Width = 70;
            // 
            // Column_NeedSoldering
            // 
            this.Column_NeedSoldering.DataPropertyName = "NeedSoldering";
            this.Column_NeedSoldering.HeaderText = "需焊接";
            this.Column_NeedSoldering.Name = "Column_NeedSoldering";
            this.Column_NeedSoldering.ReadOnly = true;
            this.Column_NeedSoldering.Visible = false;
            this.Column_NeedSoldering.Width = 70;
            // 
            // Column_WeldTemp
            // 
            this.Column_WeldTemp.DataPropertyName = "WeldTemp";
            this.Column_WeldTemp.HeaderText = "焊接温度";
            this.Column_WeldTemp.MaxInputLength = 10;
            this.Column_WeldTemp.Name = "Column_WeldTemp";
            this.Column_WeldTemp.ReadOnly = true;
            this.Column_WeldTemp.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_WeldTemp.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.Column_WeldTemp.Visible = false;
            this.Column_WeldTemp.Width = 80;
            // 
            // Column_WeldTime
            // 
            this.Column_WeldTime.DataPropertyName = "WeldTime";
            this.Column_WeldTime.HeaderText = "焊接时间";
            this.Column_WeldTime.MaxInputLength = 10;
            this.Column_WeldTime.Name = "Column_WeldTime";
            this.Column_WeldTime.ReadOnly = true;
            this.Column_WeldTime.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_WeldTime.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.Column_WeldTime.Visible = false;
            this.Column_WeldTime.Width = 80;
            // 
            // Column_NeedCheck
            // 
            this.Column_NeedCheck.DataPropertyName = "NeedCheck";
            this.Column_NeedCheck.HeaderText = "需检测";
            this.Column_NeedCheck.Name = "Column_NeedCheck";
            this.Column_NeedCheck.ReadOnly = true;
            this.Column_NeedCheck.Visible = false;
            this.Column_NeedCheck.Width = 55;
            // 
            // Column_CheckOK
            // 
            this.Column_CheckOK.HeaderText = "校准点";
            this.Column_CheckOK.Name = "Column_CheckOK";
            this.Column_CheckOK.ReadOnly = true;
            this.Column_CheckOK.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Column_CheckOK.Width = 140;
            // 
            // Column_PointType
            // 
            this.Column_PointType.HeaderText = "点类型";
            this.Column_PointType.Name = "Column_PointType";
            this.Column_PointType.ReadOnly = true;
            this.Column_PointType.Visible = false;
            // 
            // Column_PointSizeX
            // 
            this.Column_PointSizeX.HeaderText = "横向点大小";
            this.Column_PointSizeX.Name = "Column_PointSizeX";
            this.Column_PointSizeX.ReadOnly = true;
            this.Column_PointSizeX.Visible = false;
            // 
            // Column_PointSizeY
            // 
            this.Column_PointSizeY.HeaderText = "纵向点大小";
            this.Column_PointSizeY.Name = "Column_PointSizeY";
            this.Column_PointSizeY.ReadOnly = true;
            this.Column_PointSizeY.Visible = false;
            // 
            // Column_PenWidth
            // 
            this.Column_PenWidth.HeaderText = "画笔宽度";
            this.Column_PenWidth.Name = "Column_PenWidth";
            this.Column_PenWidth.ReadOnly = true;
            this.Column_PenWidth.Visible = false;
            // 
            // Column_ShowText
            // 
            this.Column_ShowText.HeaderText = "投影文字";
            this.Column_ShowText.Name = "Column_ShowText";
            this.Column_ShowText.ReadOnly = true;
            this.Column_ShowText.Visible = false;
            // 
            // Column_getPosition
            // 
            this.Column_getPosition.HeaderText = "更新坐标";
            this.Column_getPosition.Name = "Column_getPosition";
            this.Column_getPosition.ReadOnly = true;
            this.Column_getPosition.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_getPosition.Text = "更新坐标";
            this.Column_getPosition.ToolTipText = "更新坐标";
            this.Column_getPosition.UseColumnTextForLinkValue = true;
            this.Column_getPosition.Visible = false;
            this.Column_getPosition.Width = 70;
            // 
            // Column_MoveTest
            // 
            this.Column_MoveTest.HeaderText = "移动测试";
            this.Column_MoveTest.Name = "Column_MoveTest";
            this.Column_MoveTest.ReadOnly = true;
            this.Column_MoveTest.Text = "移动测试";
            this.Column_MoveTest.ToolTipText = "移动测试";
            this.Column_MoveTest.UseColumnTextForLinkValue = true;
            this.Column_MoveTest.Width = 80;
            // 
            // Column_btnDetail
            // 
            this.Column_btnDetail.HeaderText = "详情";
            this.Column_btnDetail.Name = "Column_btnDetail";
            this.Column_btnDetail.ReadOnly = true;
            this.Column_btnDetail.Text = "详情";
            this.Column_btnDetail.UseColumnTextForLinkValue = true;
            this.Column_btnDetail.Width = 60;
            // 
            // Column_Del
            // 
            this.Column_Del.HeaderText = "删除";
            this.Column_Del.Name = "Column_Del";
            this.Column_Del.ReadOnly = true;
            this.Column_Del.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Column_Del.Text = "删除";
            this.Column_Del.ToolTipText = "删除";
            this.Column_Del.UseColumnTextForLinkValue = true;
            this.Column_Del.Width = 60;
            // 
            // Column_Up
            // 
            this.Column_Up.HeaderText = "上升";
            this.Column_Up.Image = ((System.Drawing.Image)(resources.GetObject("Column_Up.Image")));
            this.Column_Up.Name = "Column_Up";
            this.Column_Up.ReadOnly = true;
            this.Column_Up.Visible = false;
            this.Column_Up.Width = 50;
            // 
            // Column_Down
            // 
            this.Column_Down.HeaderText = "下降";
            this.Column_Down.Image = ((System.Drawing.Image)(resources.GetObject("Column_Down.Image")));
            this.Column_Down.Name = "Column_Down";
            this.Column_Down.ReadOnly = true;
            this.Column_Down.Visible = false;
            this.Column_Down.Width = 50;
            // 
            // lblMsg
            // 
            this.lblMsg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lblMsg.AutoSize = true;
            this.lblMsg.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblMsg.ForeColor = System.Drawing.Color.Black;
            this.lblMsg.Location = new System.Drawing.Point(102, 636);
            this.lblMsg.Name = "lblMsg";
            this.lblMsg.Size = new System.Drawing.Size(56, 17);
            this.lblMsg.TabIndex = 260;
            this.lblMsg.Text = "急停未开";
            this.lblMsg.Visible = false;
            // 
            // btnSetOrigin
            // 
            this.btnSetOrigin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSetOrigin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnSetOrigin.Location = new System.Drawing.Point(8, 546);
            this.btnSetOrigin.Name = "btnSetOrigin";
            this.btnSetOrigin.Size = new System.Drawing.Size(120, 31);
            this.btnSetOrigin.TabIndex = 278;
            this.btnSetOrigin.Text = "重置基准点";
            this.btnSetOrigin.UseVisualStyleBackColor = true;
            this.btnSetOrigin.Visible = false;
            this.btnSetOrigin.Click += new System.EventHandler(this.btnSetBasePoint_Click);
            // 
            // panel3
            // 
            this.panel3.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.panel3.Controls.Add(this.panBoard);
            this.panel3.Location = new System.Drawing.Point(851, 187);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(689, 473);
            this.panel3.TabIndex = 277;
            // 
            // panBoard
            // 
            this.panBoard.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.panBoard.AutoScroll = true;
            this.panBoard.Controls.Add(this.picBoard);
            this.panBoard.Location = new System.Drawing.Point(3, 3);
            this.panBoard.Name = "panBoard";
            this.panBoard.Size = new System.Drawing.Size(676, 467);
            this.panBoard.TabIndex = 261;
            // 
            // picBoard
            // 
            this.picBoard.ContextMenuStrip = this.contextMenuStrip1;
            this.picBoard.Cursor = System.Windows.Forms.Cursors.Cross;
            this.picBoard.Location = new System.Drawing.Point(0, 0);
            this.picBoard.Name = "picBoard";
            this.picBoard.Size = new System.Drawing.Size(435, 258);
            this.picBoard.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.picBoard.TabIndex = 259;
            this.picBoard.TabStop = false;
            this.picBoard.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picBoard_MouseDown);
            this.picBoard.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picBoard_MouseMove);
            // 
            // 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.lblLineW);
            this.groupBox1.Controls.Add(this.txtLineWidth);
            this.groupBox1.Controls.Add(this.lbllinews);
            this.groupBox1.Controls.Add(this.btnConfigAOI);
            this.groupBox1.Controls.Add(this.lblAoi);
            this.groupBox1.Controls.Add(this.cmbAOIFile);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.txtCode);
            this.groupBox1.Controls.Add(this.txtBoardName);
            this.groupBox1.Controls.Add(this.label14);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.txtBoardL);
            this.groupBox1.Controls.Add(this.txtBoardW);
            this.groupBox1.Controls.Add(this.label25);
            this.groupBox1.Controls.Add(this.label24);
            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(3, 3);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(1541, 70);
            this.groupBox1.TabIndex = 20;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "程序基本信息";
            // 
            // lblLineW
            // 
            this.lblLineW.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblLineW.Location = new System.Drawing.Point(882, 27);
            this.lblLineW.Name = "lblLineW";
            this.lblLineW.Size = new System.Drawing.Size(80, 20);
            this.lblLineW.TabIndex = 297;
            this.lblLineW.Text = "线体宽度:";
            this.lblLineW.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtLineWidth
            // 
            this.txtLineWidth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtLineWidth.Location = new System.Drawing.Point(966, 23);
            this.txtLineWidth.MaxLength = 8;
            this.txtLineWidth.Name = "txtLineWidth";
            this.txtLineWidth.Size = new System.Drawing.Size(70, 29);
            this.txtLineWidth.TabIndex = 295;
            // 
            // lbllinews
            // 
            this.lbllinews.AutoSize = true;
            this.lbllinews.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lbllinews.Location = new System.Drawing.Point(1040, 29);
            this.lbllinews.Name = "lbllinews";
            this.lbllinews.Size = new System.Drawing.Size(30, 17);
            this.lbllinews.TabIndex = 296;
            this.lbllinews.Text = "mm";
            // 
            // btnConfigAOI
            // 
            this.btnConfigAOI.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnConfigAOI.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnConfigAOI.Location = new System.Drawing.Point(1424, 15);
            this.btnConfigAOI.Name = "btnConfigAOI";
            this.btnConfigAOI.Size = new System.Drawing.Size(100, 45);
            this.btnConfigAOI.TabIndex = 284;
            this.btnConfigAOI.Text = "配置AOI";
            this.btnConfigAOI.UseVisualStyleBackColor = true;
            this.btnConfigAOI.Click += new System.EventHandler(this.btnConfigAOI_Click);
            // 
            // lblAoi
            // 
            this.lblAoi.Location = new System.Drawing.Point(1074, 26);
            this.lblAoi.Name = "lblAoi";
            this.lblAoi.Size = new System.Drawing.Size(112, 22);
            this.lblAoi.TabIndex = 283;
            this.lblAoi.Text = "AOI程序:";
            this.lblAoi.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // cmbAOIFile
            // 
            this.cmbAOIFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbAOIFile.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.cmbAOIFile.FormattingEnabled = true;
            this.cmbAOIFile.Location = new System.Drawing.Point(1190, 23);
            this.cmbAOIFile.Name = "cmbAOIFile";
            this.cmbAOIFile.Size = new System.Drawing.Size(230, 28);
            this.cmbAOIFile.TabIndex = 282;
            // 
            // label5
            // 
            this.label5.Location = new System.Drawing.Point(518, 29);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(80, 17);
            this.label5.TabIndex = 276;
            this.label5.Text = "宽度↑";
            this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtCode
            // 
            this.txtCode.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtCode.Location = new System.Drawing.Point(374, 23);
            this.txtCode.MaxLength = 40;
            this.txtCode.Name = "txtCode";
            this.txtCode.Size = new System.Drawing.Size(140, 29);
            this.txtCode.TabIndex = 10;
            // 
            // txtBoardName
            // 
            this.txtBoardName.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtBoardName.Location = new System.Drawing.Point(89, 23);
            this.txtBoardName.MaxLength = 20;
            this.txtBoardName.Name = "txtBoardName";
            this.txtBoardName.Size = new System.Drawing.Size(180, 29);
            this.txtBoardName.TabIndex = 2;
            // 
            // label14
            // 
            this.label14.Location = new System.Drawing.Point(273, 26);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(97, 22);
            this.label14.TabIndex = 9;
            this.label14.Text = "类型:";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(700, 29);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(80, 17);
            this.label3.TabIndex = 275;
            this.label3.Text = "长度→";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(5, 29);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(80, 17);
            this.label2.TabIndex = 1;
            this.label2.Text = "名称";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtBoardL
            // 
            this.txtBoardL.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtBoardL.Location = new System.Drawing.Point(784, 23);
            this.txtBoardL.MaxLength = 8;
            this.txtBoardL.Name = "txtBoardL";
            this.txtBoardL.Size = new System.Drawing.Size(60, 29);
            this.txtBoardL.TabIndex = 6;
            this.txtBoardL.TextChanged += new System.EventHandler(this.txtBoardWidth_TextChanged);
            // 
            // txtBoardW
            // 
            this.txtBoardW.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.txtBoardW.Location = new System.Drawing.Point(602, 23);
            this.txtBoardW.MaxLength = 8;
            this.txtBoardW.Name = "txtBoardW";
            this.txtBoardW.Size = new System.Drawing.Size(60, 29);
            this.txtBoardW.TabIndex = 4;
            this.txtBoardW.TextChanged += new System.EventHandler(this.txtBoardLength_TextChanged);
            // 
            // label25
            // 
            this.label25.AutoSize = true;
            this.label25.Location = new System.Drawing.Point(848, 29);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(30, 17);
            this.label25.TabIndex = 37;
            this.label25.Text = "mm";
            // 
            // label24
            // 
            this.label24.AutoSize = true;
            this.label24.Location = new System.Drawing.Point(666, 29);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(30, 17);
            this.label24.TabIndex = 36;
            this.label24.Text = "mm";
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.button1.Location = new System.Drawing.Point(714, 644);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(120, 45);
            this.button1.TabIndex = 41;
            this.button1.Text = "返回";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnSave.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnSave.Location = new System.Drawing.Point(592, 644);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(120, 45);
            this.btnSave.TabIndex = 40;
            this.btnSave.Text = "保存";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // FrmBoardInfo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1549, 701);
            this.Controls.Add(this.panel1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FrmBoardInfo";
            this.Text = "新增程序";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmBoardInfo_FormClosing);
            this.Load += new System.EventHandler(this.FrmBoardInfo_Load);
            this.Shown += new System.EventHandler(this.FrmBoardInfo_Shown);
            this.VisibleChanged += new System.EventHandler(this.FrmBoardInfo_VisibleChanged);
            this.contextMenuStrip1.ResumeLayout(false);
            this.contextMenuStrip2.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.焊点列表.ResumeLayout(false);
            this.焊点列表.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvList)).EndInit();
            this.panel3.ResumeLayout(false);
            this.panBoard.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picBoard)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TextBox txtBoardL;
        private System.Windows.Forms.TextBox txtBoardW;
        private System.Windows.Forms.TextBox txtBoardName;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.DataGridView dgvList;
        private System.Windows.Forms.Button btnSave;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.TextBox txtCode;
        private System.Windows.Forms.Label label14;
        private System.Windows.Forms.Button btnOpenFile;
        private System.Windows.Forms.PictureBox picBoard;
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.Panel panBoard;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolTip toolTip1;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
        private System.Windows.Forms.ToolStripMenuItem 上升ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 下降ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
        private System.Windows.Forms.Label lblMsg;
        private System.Windows.Forms.Label label25;
        private System.Windows.Forms.Label label24;
        private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn1;
        private System.Windows.Forms.DataGridViewImageColumn dataGridViewImageColumn2;
        private System.Windows.Forms.ToolStripMenuItem 测试位置ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 详情ToolStripMenuItem;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Panel panel3;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Button btnSetOrigin;
        private System.Windows.Forms.Button btnGoHome;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.GroupBox 焊点列表;
        private System.ComponentModel.BackgroundWorker backgroundWorker1;
        private System.Windows.Forms.Label lblMousePosition;
        private System.Windows.Forms.ToolStripMenuItem 记录为组装坐标ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 更新为组装坐标ToolStripMenuItem;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Button btnSort;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.Button btnUpdate;
        private System.Windows.Forms.Label label9;
        private System.Windows.Forms.TextBox txtXUpdate;
        private System.Windows.Forms.TextBox txtYUpdate;
        private System.Windows.Forms.Label label10;
        private System.Windows.Forms.Button btnCheck;
        private System.Windows.Forms.Label label8;
        private System.Windows.Forms.Label label122;
        private System.Windows.Forms.CheckBox chbShowName;
        private System.Windows.Forms.CheckBox chbNormal;
        private System.Windows.Forms.ComboBox cmbAOIFile;
        private System.Windows.Forms.Label lblAoi;
        private System.Windows.Forms.Button btnConfigAOI;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_pointNum;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PartNum;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Name;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_X;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Y;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_NodeX;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_NodeY;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_positionNum;
        private System.Windows.Forms.DataGridViewCheckBoxColumn Column_NeedSoldering;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_WeldTemp;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_WeldTime;
        private System.Windows.Forms.DataGridViewCheckBoxColumn Column_NeedCheck;
        private System.Windows.Forms.DataGridViewCheckBoxColumn Column_CheckOK;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PointType;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PointSizeX;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PointSizeY;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_PenWidth;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_ShowText;
        private System.Windows.Forms.DataGridViewLinkColumn Column_getPosition;
        private System.Windows.Forms.DataGridViewLinkColumn Column_MoveTest;
        private System.Windows.Forms.DataGridViewLinkColumn Column_btnDetail;
        private System.Windows.Forms.DataGridViewLinkColumn Column_Del;
        private System.Windows.Forms.DataGridViewImageColumn Column_Up;
        private System.Windows.Forms.DataGridViewImageColumn Column_Down;
        private System.Windows.Forms.Label lblLineW;
        private System.Windows.Forms.TextBox txtLineWidth;
        private System.Windows.Forms.Label lbllinews;
    }
}