WvPrint.Designer.cs 53.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
namespace CsbrHcgClient
{
    partial class WvPrint
    {
        /// <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()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WvPrint));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.lbl_uptime = new System.Windows.Forms.Label();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.lbl_printednum = new System.Windows.Forms.Label();
            this.lbl_printnum = new System.Windows.Forms.Label();
            this.lbl_count = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.label3 = new System.Windows.Forms.Label();
            this.cbx_dept = new System.Windows.Forms.ComboBox();
            this.btn_refresh = new System.Windows.Forms.Button();
            this.btn_manyprint = new System.Windows.Forms.Button();
            this.panel4 = new System.Windows.Forms.Panel();
            this.chk_SelectAll = new System.Windows.Forms.CheckBox();
            this.dgv_Detail = new System.Windows.Forms.DataGridView();
            this.选择 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.rownum = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.商品编码 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.商品名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.规格 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.型号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.生产厂家 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.批号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.有效期 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.高值码 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.供应商 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.单据号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.行号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.打印状态 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Print = new System.Windows.Forms.DataGridViewImageColumn();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.panel5 = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.cxb_depted = new System.Windows.Forms.ComboBox();
            this.btn_search = new System.Windows.Forms.Button();
            this.btn_printed = new System.Windows.Forms.Button();
            this.label8 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.chked_SelectAll = new System.Windows.Forms.CheckBox();
            this.dgv_Detailed = new System.Windows.Forms.DataGridView();
            this.选择1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.rownum1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.商品编码1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.商品名称1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.规格1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.型号1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.生产厂家1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.批号1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.有效期1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.高值码1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.供应商1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.单据号1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.行号1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.打印状态1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Print1 = new System.Windows.Forms.DataGridViewImageColumn();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Detail)).BeginInit();
            this.tabPage2.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Detailed)).BeginInit();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            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(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1090, 545);
            this.tabControl1.TabIndex = 0;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.tableLayoutPanel1);
            this.tabPage1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.tabPage1.Location = new System.Drawing.Point(4, 29);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(1082, 512);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "未打印";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
            this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 2);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 3;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 97F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(1076, 506);
            this.tableLayoutPanel1.TabIndex = 0;
            this.tableLayoutPanel1.Paint += new System.Windows.Forms.PaintEventHandler(this.tableLayoutPanel1_Paint);
            // 
            // panel2
            // 
            this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tableLayoutPanel1.SetColumnSpan(this.panel2, 2);
            this.panel2.Controls.Add(this.label1);
            this.panel2.Controls.Add(this.lbl_uptime);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(3, 3);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(3);
            this.panel2.Size = new System.Drawing.Size(1070, 34);
            this.panel2.TabIndex = 2;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("宋体", 14.25F);
            this.label1.Location = new System.Drawing.Point(339, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(171, 19);
            this.label1.TabIndex = 0;
            this.label1.Text = "上次获取数据时间:";
            // 
            // lbl_uptime
            // 
            this.lbl_uptime.AutoSize = true;
            this.lbl_uptime.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lbl_uptime.Location = new System.Drawing.Point(516, 8);
            this.lbl_uptime.Name = "lbl_uptime";
            this.lbl_uptime.Size = new System.Drawing.Size(75, 19);
            this.lbl_uptime.TabIndex = 3;
            this.lbl_uptime.Text = "label9";
            // 
            // tableLayoutPanel2
            // 
            this.tableLayoutPanel2.ColumnCount = 2;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 55.76923F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 44.23077F));
            this.tableLayoutPanel2.Controls.Add(this.panel1, 1, 0);
            this.tableLayoutPanel2.Controls.Add(this.panel3, 0, 0);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 43);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 1;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 91F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(1070, 91);
            this.tableLayoutPanel2.TabIndex = 3;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.SystemColors.Control;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(this.lbl_printednum);
            this.panel1.Controls.Add(this.lbl_printnum);
            this.panel1.Controls.Add(this.lbl_count);
            this.panel1.Controls.Add(this.label6);
            this.panel1.Controls.Add(this.label5);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Location = new System.Drawing.Point(599, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(336, 85);
            this.panel1.TabIndex = 4;
            // 
            // lbl_printednum
            // 
            this.lbl_printednum.AutoSize = true;
            this.lbl_printednum.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lbl_printednum.Location = new System.Drawing.Point(253, 59);
            this.lbl_printednum.Name = "lbl_printednum";
            this.lbl_printednum.Size = new System.Drawing.Size(75, 19);
            this.lbl_printednum.TabIndex = 3;
            this.lbl_printednum.Text = "label9";
            // 
            // lbl_printnum
            // 
            this.lbl_printnum.AutoSize = true;
            this.lbl_printnum.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lbl_printnum.Location = new System.Drawing.Point(106, 60);
            this.lbl_printnum.Name = "lbl_printnum";
            this.lbl_printnum.Size = new System.Drawing.Size(75, 19);
            this.lbl_printnum.TabIndex = 3;
            this.lbl_printnum.Text = "label9";
            // 
            // lbl_count
            // 
            this.lbl_count.AutoSize = true;
            this.lbl_count.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lbl_count.Location = new System.Drawing.Point(102, 19);
            this.lbl_count.Name = "lbl_count";
            this.lbl_count.Size = new System.Drawing.Size(75, 19);
            this.lbl_count.TabIndex = 3;
            this.lbl_count.Text = "label9";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("宋体", 14.25F);
            this.label6.Location = new System.Drawing.Point(180, 62);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(76, 19);
            this.label6.TabIndex = 2;
            this.label6.Text = "已打印:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("宋体", 14.25F);
            this.label5.Location = new System.Drawing.Point(31, 62);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(76, 19);
            this.label5.TabIndex = 2;
            this.label5.Text = "未打印:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.Location = new System.Drawing.Point(31, 19);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(76, 19);
            this.label2.TabIndex = 1;
            this.label2.Text = "条目数:";
            // 
            // panel3
            // 
            this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel3.Controls.Add(this.label3);
            this.panel3.Controls.Add(this.cbx_dept);
            this.panel3.Controls.Add(this.btn_refresh);
            this.panel3.Controls.Add(this.btn_manyprint);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(3, 3);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(590, 85);
            this.panel3.TabIndex = 5;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(225, 35);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(56, 16);
            this.label3.TabIndex = 72;
            this.label3.Text = "科室:";
            // 
            // cbx_dept
            // 
            this.cbx_dept.FormattingEnabled = true;
            this.cbx_dept.Location = new System.Drawing.Point(282, 31);
            this.cbx_dept.Name = "cbx_dept";
            this.cbx_dept.Size = new System.Drawing.Size(141, 24);
            this.cbx_dept.TabIndex = 73;
            // 
            // btn_refresh
            // 
            this.btn_refresh.Location = new System.Drawing.Point(7, 19);
            this.btn_refresh.Name = "btn_refresh";
            this.btn_refresh.Size = new System.Drawing.Size(82, 47);
            this.btn_refresh.TabIndex = 0;
            this.btn_refresh.Text = "刷新";
            this.btn_refresh.UseVisualStyleBackColor = true;
            this.btn_refresh.Click += new System.EventHandler(this.btn_refresh_Click);
            // 
            // btn_manyprint
            // 
            this.btn_manyprint.Location = new System.Drawing.Point(125, 19);
            this.btn_manyprint.Name = "btn_manyprint";
            this.btn_manyprint.Size = new System.Drawing.Size(82, 47);
            this.btn_manyprint.TabIndex = 0;
            this.btn_manyprint.Text = "批量打印";
            this.btn_manyprint.UseVisualStyleBackColor = true;
            this.btn_manyprint.Click += new System.EventHandler(this.btn_manyprint_Click);
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.chk_SelectAll);
            this.panel4.Controls.Add(this.dgv_Detail);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(3, 140);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(1070, 363);
            this.panel4.TabIndex = 4;
            // 
            // chk_SelectAll
            // 
            this.chk_SelectAll.AutoSize = true;
            this.chk_SelectAll.Location = new System.Drawing.Point(11, 12);
            this.chk_SelectAll.Name = "chk_SelectAll";
            this.chk_SelectAll.Size = new System.Drawing.Size(15, 14);
            this.chk_SelectAll.TabIndex = 6;
            this.chk_SelectAll.UseVisualStyleBackColor = true;
            this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
            // 
            // dgv_Detail
            // 
            this.dgv_Detail.AllowUserToAddRows = false;
            this.dgv_Detail.AllowUserToDeleteRows = false;
            this.dgv_Detail.AllowUserToResizeColumns = false;
            this.dgv_Detail.AllowUserToResizeRows = false;
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.dgv_Detail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
            this.dgv_Detail.BackgroundColor = System.Drawing.Color.White;
            this.dgv_Detail.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(161)))), ((int)(((byte)(164)))));
            dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.LightSkyBlue;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgv_Detail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
            this.dgv_Detail.ColumnHeadersHeight = 30;
            this.dgv_Detail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.dgv_Detail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.选择,
            this.rownum,
            this.商品编码,
            this.商品名称,
            this.规格,
            this.型号,
            this.生产厂家,
            this.批号,
            this.有效期,
            this.高值码,
            this.供应商,
            this.单据号,
            this.行号,
            this.打印状态,
            this.Print});
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle8.Padding = new System.Windows.Forms.Padding(2, 1, 0, 1);
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.Color.PowderBlue;
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgv_Detail.DefaultCellStyle = dataGridViewCellStyle8;
            this.dgv_Detail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgv_Detail.EnableHeadersVisualStyles = false;
            this.dgv_Detail.Location = new System.Drawing.Point(0, 0);
            this.dgv_Detail.MultiSelect = false;
            this.dgv_Detail.Name = "dgv_Detail";
            this.dgv_Detail.RowHeadersVisible = false;
            this.dgv_Detail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            this.dgv_Detail.RowTemplate.Height = 45;
            this.dgv_Detail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgv_Detail.Size = new System.Drawing.Size(1070, 363);
            this.dgv_Detail.TabIndex = 5;
            this.dgv_Detail.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Detail_CellContentClick);
            this.dgv_Detail.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgv_Detail_RowPostPaint);
            // 
            // 选择
            // 
            this.选择.DataPropertyName = "选择";
            this.选择.FalseValue = "false";
            this.选择.FillWeight = 129.4416F;
            this.选择.HeaderText = "";
            this.选择.Name = "选择";
            this.选择.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.选择.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.选择.TrueValue = "true";
            this.选择.Width = 30;
            // 
            // rownum
            // 
            this.rownum.DataPropertyName = "rownum";
            this.rownum.HeaderText = "序号";
            this.rownum.Name = "rownum";
            this.rownum.Width = 50;
            // 
            // 商品编码
            // 
            this.商品编码.DataPropertyName = "商品编码";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.商品编码.DefaultCellStyle = dataGridViewCellStyle3;
            this.商品编码.FillWeight = 105.6819F;
            this.商品编码.HeaderText = "商品编码";
            this.商品编码.Name = "商品编码";
            this.商品编码.Width = 101;
            // 
            // 商品名称
            // 
            this.商品名称.DataPropertyName = "商品名称";
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.商品名称.DefaultCellStyle = dataGridViewCellStyle4;
            this.商品名称.FillWeight = 163.3266F;
            this.商品名称.HeaderText = "商品名称";
            this.商品名称.Name = "商品名称";
            this.商品名称.Width = 200;
            // 
            // 规格
            // 
            this.规格.DataPropertyName = "规格";
            this.规格.FillWeight = 96.07445F;
            this.规格.HeaderText = "规格";
            this.规格.Name = "规格";
            this.规格.Width = 230;
            // 
            // 型号
            // 
            this.型号.DataPropertyName = "型号";
            this.型号.HeaderText = "型号";
            this.型号.Name = "型号";
            // 
            // 生产厂家
            // 
            this.生产厂家.DataPropertyName = "生产厂家";
            this.生产厂家.FillWeight = 96.07445F;
            this.生产厂家.HeaderText = "生产厂家";
            this.生产厂家.Name = "生产厂家";
            this.生产厂家.Width = 230;
            // 
            // 批号
            // 
            this.批号.DataPropertyName = "批号";
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.批号.DefaultCellStyle = dataGridViewCellStyle5;
            this.批号.FillWeight = 86.467F;
            this.批号.HeaderText = "批号";
            this.批号.Name = "批号";
            this.批号.Width = 60;
            // 
            // 有效期
            // 
            this.有效期.DataPropertyName = "有效期";
            this.有效期.FillWeight = 96.07445F;
            this.有效期.HeaderText = "有效期";
            this.有效期.Name = "有效期";
            this.有效期.Width = 80;
            // 
            // 高值码
            // 
            this.高值码.DataPropertyName = "高值码";
            this.高值码.HeaderText = "高值码";
            this.高值码.Name = "高值码";
            this.高值码.Width = 290;
            // 
            // 供应商
            // 
            this.供应商.DataPropertyName = "供应商";
            this.供应商.HeaderText = "供应商";
            this.供应商.Name = "供应商";
            this.供应商.Visible = false;
            // 
            // 单据号
            // 
            this.单据号.DataPropertyName = "单据号";
            this.单据号.HeaderText = "单据号";
            this.单据号.Name = "单据号";
            this.单据号.Visible = false;
            this.单据号.Width = 85;
            // 
            // 行号
            // 
            this.行号.DataPropertyName = "行号";
            this.行号.HeaderText = "行号";
            this.行号.Name = "行号";
            this.行号.Visible = false;
            this.行号.Width = 69;
            // 
            // 打印状态
            // 
            this.打印状态.DataPropertyName = "打印状态";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.打印状态.DefaultCellStyle = dataGridViewCellStyle6;
            this.打印状态.FillWeight = 38.42978F;
            this.打印状态.HeaderText = "打印状态";
            this.打印状态.Name = "打印状态";
            this.打印状态.Visible = false;
            this.打印状态.Width = 101;
            // 
            // Print
            // 
            this.Print.DataPropertyName = "Print";
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle7.NullValue = ((object)(resources.GetObject("dataGridViewCellStyle7.NullValue")));
            this.Print.DefaultCellStyle = dataGridViewCellStyle7;
            this.Print.FillWeight = 38.42978F;
            this.Print.HeaderText = "打印";
            this.Print.Image = ((System.Drawing.Image)(resources.GetObject("Print.Image")));
            this.Print.Name = "Print";
            this.Print.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Print.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Print.Width = 69;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.tableLayoutPanel3);
            this.tabPage2.Location = new System.Drawing.Point(4, 29);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(1082, 512);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "已打印";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // tableLayoutPanel3
            // 
            this.tableLayoutPanel3.ColumnCount = 1;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel3.Controls.Add(this.panel5, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.panel6, 0, 1);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 2;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 58F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(1076, 506);
            this.tableLayoutPanel3.TabIndex = 0;
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.label4);
            this.panel5.Controls.Add(this.cxb_depted);
            this.panel5.Controls.Add(this.btn_search);
            this.panel5.Controls.Add(this.btn_printed);
            this.panel5.Controls.Add(this.label8);
            this.panel5.Controls.Add(this.label7);
            this.panel5.Location = new System.Drawing.Point(3, 3);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(780, 51);
            this.panel5.TabIndex = 1;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(291, 15);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(51, 20);
            this.label4.TabIndex = 74;
            this.label4.Text = "科室:";
            // 
            // cxb_depted
            // 
            this.cxb_depted.FormattingEnabled = true;
            this.cxb_depted.Location = new System.Drawing.Point(348, 11);
            this.cxb_depted.Name = "cxb_depted";
            this.cxb_depted.Size = new System.Drawing.Size(141, 28);
            this.cxb_depted.TabIndex = 75;
            // 
            // btn_search
            // 
            this.btn_search.Location = new System.Drawing.Point(37, 1);
            this.btn_search.Name = "btn_search";
            this.btn_search.Size = new System.Drawing.Size(82, 47);
            this.btn_search.TabIndex = 6;
            this.btn_search.Text = "刷新";
            this.btn_search.UseVisualStyleBackColor = true;
            this.btn_search.Click += new System.EventHandler(this.btn_search_Click);
            // 
            // btn_printed
            // 
            this.btn_printed.Location = new System.Drawing.Point(171, 2);
            this.btn_printed.Name = "btn_printed";
            this.btn_printed.Size = new System.Drawing.Size(82, 47);
            this.btn_printed.TabIndex = 6;
            this.btn_printed.Text = "打印完成";
            this.btn_printed.UseVisualStyleBackColor = true;
            this.btn_printed.Click += new System.EventHandler(this.btn_printed_Click);
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label8.ForeColor = System.Drawing.Color.Red;
            this.label8.Location = new System.Drawing.Point(536, 11);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(21, 25);
            this.label8.TabIndex = 5;
            this.label8.Text = "*";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
            this.label7.Location = new System.Drawing.Point(563, 11);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(218, 21);
            this.label7.TabIndex = 4;
            this.label7.Text = "重复打印时,原标签自动作废";
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.chked_SelectAll);
            this.panel6.Controls.Add(this.dgv_Detailed);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel6.Location = new System.Drawing.Point(3, 61);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(1070, 442);
            this.panel6.TabIndex = 2;
            // 
            // chked_SelectAll
            // 
            this.chked_SelectAll.AutoSize = true;
            this.chked_SelectAll.Location = new System.Drawing.Point(11, 12);
            this.chked_SelectAll.Name = "chked_SelectAll";
            this.chked_SelectAll.Size = new System.Drawing.Size(15, 14);
            this.chked_SelectAll.TabIndex = 8;
            this.chked_SelectAll.UseVisualStyleBackColor = true;
            this.chked_SelectAll.CheckedChanged += new System.EventHandler(this.chked_SelectAll_CheckedChanged);
            // 
            // dgv_Detailed
            // 
            this.dgv_Detailed.AllowUserToAddRows = false;
            this.dgv_Detailed.AllowUserToDeleteRows = false;
            this.dgv_Detailed.AllowUserToResizeColumns = false;
            this.dgv_Detailed.AllowUserToResizeRows = false;
            dataGridViewCellStyle9.BackColor = System.Drawing.Color.WhiteSmoke;
            this.dgv_Detailed.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle9;
            this.dgv_Detailed.BackgroundColor = System.Drawing.Color.White;
            this.dgv_Detailed.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(161)))), ((int)(((byte)(164)))));
            dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.Color.LightSkyBlue;
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgv_Detailed.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10;
            this.dgv_Detailed.ColumnHeadersHeight = 30;
            this.dgv_Detailed.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.dgv_Detailed.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.选择1,
            this.rownum1,
            this.商品编码1,
            this.商品名称1,
            this.规格1,
            this.型号1,
            this.生产厂家1,
            this.批号1,
            this.有效期1,
            this.高值码1,
            this.供应商1,
            this.单据号1,
            this.行号1,
            this.打印状态1,
            this.Print1});
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle16.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle16.Padding = new System.Windows.Forms.Padding(2, 1, 0, 1);
            dataGridViewCellStyle16.SelectionBackColor = System.Drawing.Color.PowderBlue;
            dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgv_Detailed.DefaultCellStyle = dataGridViewCellStyle16;
            this.dgv_Detailed.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgv_Detailed.EnableHeadersVisualStyles = false;
            this.dgv_Detailed.Location = new System.Drawing.Point(0, 0);
            this.dgv_Detailed.MultiSelect = false;
            this.dgv_Detailed.Name = "dgv_Detailed";
            this.dgv_Detailed.RowHeadersVisible = false;
            this.dgv_Detailed.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            this.dgv_Detailed.RowTemplate.Height = 45;
            this.dgv_Detailed.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgv_Detailed.Size = new System.Drawing.Size(1070, 442);
            this.dgv_Detailed.TabIndex = 7;
            this.dgv_Detailed.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Detailed_CellContentClick);
            this.dgv_Detailed.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgv_Detailed_RowPostPaint);
            this.dgv_Detailed.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgv_Detailed_RowStateChanged);
            // 
            // 选择1
            // 
            this.选择1.DataPropertyName = "选择1";
            this.选择1.FalseValue = "false";
            this.选择1.FillWeight = 129.4416F;
            this.选择1.HeaderText = "";
            this.选择1.Name = "选择1";
            this.选择1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.选择1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.选择1.TrueValue = "true";
            this.选择1.Width = 30;
            // 
            // rownum1
            // 
            this.rownum1.DataPropertyName = "rownum1";
            this.rownum1.HeaderText = "序号";
            this.rownum1.Name = "rownum1";
            this.rownum1.Width = 50;
            // 
            // 商品编码1
            // 
            this.商品编码1.DataPropertyName = "商品编码1";
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.商品编码1.DefaultCellStyle = dataGridViewCellStyle11;
            this.商品编码1.FillWeight = 105.6819F;
            this.商品编码1.HeaderText = "商品编码";
            this.商品编码1.Name = "商品编码1";
            this.商品编码1.Width = 101;
            // 
            // 商品名称1
            // 
            this.商品名称1.DataPropertyName = "商品名称1";
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.商品名称1.DefaultCellStyle = dataGridViewCellStyle12;
            this.商品名称1.FillWeight = 163.3266F;
            this.商品名称1.HeaderText = "商品名称";
            this.商品名称1.Name = "商品名称1";
            this.商品名称1.Width = 200;
            // 
            // 规格1
            // 
            this.规格1.DataPropertyName = "规格1";
            this.规格1.FillWeight = 96.07445F;
            this.规格1.HeaderText = "规格";
            this.规格1.Name = "规格1";
            this.规格1.Width = 230;
            // 
            // 型号1
            // 
            this.型号1.DataPropertyName = "型号1";
            this.型号1.HeaderText = "型号";
            this.型号1.Name = "型号1";
            // 
            // 生产厂家1
            // 
            this.生产厂家1.DataPropertyName = "生产厂家1";
            this.生产厂家1.FillWeight = 96.07445F;
            this.生产厂家1.HeaderText = "生产厂家";
            this.生产厂家1.Name = "生产厂家1";
            this.生产厂家1.Width = 230;
            // 
            // 批号1
            // 
            this.批号1.DataPropertyName = "批号1";
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.批号1.DefaultCellStyle = dataGridViewCellStyle13;
            this.批号1.FillWeight = 86.467F;
            this.批号1.HeaderText = "批号";
            this.批号1.Name = "批号1";
            this.批号1.Width = 60;
            // 
            // 有效期1
            // 
            this.有效期1.DataPropertyName = "有效期1";
            this.有效期1.FillWeight = 96.07445F;
            this.有效期1.HeaderText = "有效期";
            this.有效期1.Name = "有效期1";
            this.有效期1.Width = 80;
            // 
            // 高值码1
            // 
            this.高值码1.DataPropertyName = "高值码1";
            this.高值码1.HeaderText = "高值码";
            this.高值码1.Name = "高值码1";
            this.高值码1.Width = 290;
            // 
            // 供应商1
            // 
            this.供应商1.DataPropertyName = "供应商1";
            this.供应商1.HeaderText = "供应商";
            this.供应商1.Name = "供应商1";
            this.供应商1.Visible = false;
            // 
            // 单据号1
            // 
            this.单据号1.DataPropertyName = "单据号1";
            this.单据号1.HeaderText = "单据号";
            this.单据号1.Name = "单据号1";
            this.单据号1.Visible = false;
            this.单据号1.Width = 85;
            // 
            // 行号1
            // 
            this.行号1.DataPropertyName = "行号1";
            this.行号1.HeaderText = "行号";
            this.行号1.Name = "行号1";
            this.行号1.Visible = false;
            this.行号1.Width = 69;
            // 
            // 打印状态1
            // 
            this.打印状态1.DataPropertyName = "打印状态1";
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.打印状态1.DefaultCellStyle = dataGridViewCellStyle14;
            this.打印状态1.FillWeight = 38.42978F;
            this.打印状态1.HeaderText = "打印状态";
            this.打印状态1.Name = "打印状态1";
            this.打印状态1.Visible = false;
            this.打印状态1.Width = 101;
            // 
            // Print1
            // 
            this.Print1.DataPropertyName = "Print1";
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle15.NullValue = ((object)(resources.GetObject("dataGridViewCellStyle15.NullValue")));
            this.Print1.DefaultCellStyle = dataGridViewCellStyle15;
            this.Print1.FillWeight = 38.42978F;
            this.Print1.HeaderText = "打印";
            this.Print1.Image = ((System.Drawing.Image)(resources.GetObject("Print1.Image")));
            this.Print1.Name = "Print1";
            this.Print1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.Print1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.Print1.Width = 69;
            // 
            // WvPrint
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1090, 545);
            this.Controls.Add(this.tabControl1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "WvPrint";
            this.Text = "Rfid标签打印";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WvPrint_FormClosing);
            this.Load += new System.EventHandler(this.WvPrint_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.tableLayoutPanel2.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Detail)).EndInit();
            this.tabPage2.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Detailed)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage1;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Panel panel3;
        private System.Windows.Forms.Button btn_refresh;
        private System.Windows.Forms.Button btn_manyprint;
        private System.Windows.Forms.Panel panel4;
        private System.Windows.Forms.CheckBox chk_SelectAll;
        private System.Windows.Forms.DataGridView dgv_Detail;
        private System.Windows.Forms.TabPage tabPage2;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
        private System.Windows.Forms.Panel panel5;
        private System.Windows.Forms.Button btn_search;
        private System.Windows.Forms.Button btn_printed;
        private System.Windows.Forms.Label label8;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Panel panel6;
        private System.Windows.Forms.CheckBox chked_SelectAll;
        private System.Windows.Forms.DataGridView dgv_Detailed;
        private System.Windows.Forms.Label lbl_printednum;
        private System.Windows.Forms.Label lbl_printnum;
        private System.Windows.Forms.Label lbl_count;
        private System.Windows.Forms.Label lbl_uptime;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.ComboBox cbx_dept;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.ComboBox cxb_depted;
        private System.Windows.Forms.DataGridViewCheckBoxColumn 选择;
        private System.Windows.Forms.DataGridViewTextBoxColumn rownum;
        private System.Windows.Forms.DataGridViewTextBoxColumn 商品编码;
        private System.Windows.Forms.DataGridViewTextBoxColumn 商品名称;
        private System.Windows.Forms.DataGridViewTextBoxColumn 规格;
        private System.Windows.Forms.DataGridViewTextBoxColumn 型号;
        private System.Windows.Forms.DataGridViewTextBoxColumn 生产厂家;
        private System.Windows.Forms.DataGridViewTextBoxColumn 批号;
        private System.Windows.Forms.DataGridViewTextBoxColumn 有效期;
        private System.Windows.Forms.DataGridViewTextBoxColumn 高值码;
        private System.Windows.Forms.DataGridViewTextBoxColumn 供应商;
        private System.Windows.Forms.DataGridViewTextBoxColumn 单据号;
        private System.Windows.Forms.DataGridViewTextBoxColumn 行号;
        private System.Windows.Forms.DataGridViewTextBoxColumn 打印状态;
        private System.Windows.Forms.DataGridViewImageColumn Print;
        private System.Windows.Forms.DataGridViewCheckBoxColumn 选择1;
        private System.Windows.Forms.DataGridViewTextBoxColumn rownum1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 商品编码1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 商品名称1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 规格1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 型号1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 生产厂家1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 批号1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 有效期1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 高值码1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 供应商1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 单据号1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 行号1;
        private System.Windows.Forms.DataGridViewTextBoxColumn 打印状态1;
        private System.Windows.Forms.DataGridViewImageColumn Print1;
    }
}