Commit e86cc8d9 by Neo Turing

优化

parent e77f27a1
......@@ -8,3 +8,4 @@
/Src/packages
/Src/.vs/Kivii.Client.Lims.ReportPrinter.V4.0/FileContentIndex
/Src/obj/Release
/Src/.vs/Kivii.Client.Lims.ReportPrinter.V4.0/v17
......@@ -66,11 +66,6 @@
this.lblMessage = new System.Windows.Forms.Label();
this.groupReport = new System.Windows.Forms.GroupBox();
this.gridPrintJobs = new System.Windows.Forms.DataGridView();
this.panel2 = new System.Windows.Forms.Panel();
this.tbSearch = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.btnPrint = new System.Windows.Forms.Button();
this.btnRefresh = new System.Windows.Forms.Button();
this.Column6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.IsPrint = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.IsSearch = new System.Windows.Forms.DataGridViewTextBoxColumn();
......@@ -85,6 +80,11 @@
this.IsPasteSample = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PrintStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PrintTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel2 = new System.Windows.Forms.Panel();
this.tbSearch = new System.Windows.Forms.TextBox();
this.btnSearch = new System.Windows.Forms.Button();
this.btnPrint = new System.Windows.Forms.Button();
this.btnRefresh = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.nudQuantity)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
......@@ -554,76 +554,6 @@
this.gridPrintJobs.TabIndex = 7;
this.gridPrintJobs.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.gridPrintJobs_RowPrePaint);
//
// panel2
//
this.panel2.Controls.Add(this.tbSearch);
this.panel2.Controls.Add(this.btnSearch);
this.panel2.Controls.Add(this.btnPrint);
this.panel2.Controls.Add(this.btnRefresh);
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
this.panel2.Location = new System.Drawing.Point(5, 31);
this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.panel2.Name = "panel2";
this.panel2.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.panel2.Size = new System.Drawing.Size(1179, 40);
this.panel2.TabIndex = 5;
//
// tbSearch
//
this.tbSearch.Dock = System.Windows.Forms.DockStyle.Fill;
this.tbSearch.Location = new System.Drawing.Point(105, 6);
this.tbSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tbSearch.Name = "tbSearch";
this.tbSearch.Size = new System.Drawing.Size(869, 32);
this.tbSearch.TabIndex = 17;
this.tbSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbSearch_KeyDown);
//
// btnSearch
//
this.btnSearch.Dock = System.Windows.Forms.DockStyle.Right;
this.btnSearch.Enabled = false;
this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSearch.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
this.btnSearch.Location = new System.Drawing.Point(974, 6);
this.btnSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(100, 28);
this.btnSearch.TabIndex = 16;
this.btnSearch.Text = "搜索";
this.btnSearch.UseVisualStyleBackColor = false;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnPrint
//
this.btnPrint.BackColor = System.Drawing.SystemColors.Highlight;
this.btnPrint.Dock = System.Windows.Forms.DockStyle.Right;
this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPrint.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnPrint.Location = new System.Drawing.Point(1074, 6);
this.btnPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(100, 28);
this.btnPrint.TabIndex = 11;
this.btnPrint.Text = "开始打印";
this.btnPrint.UseVisualStyleBackColor = false;
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
//
// btnRefresh
//
this.btnRefresh.BackColor = System.Drawing.Color.LightGreen;
this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Left;
this.btnRefresh.Enabled = false;
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnRefresh.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnRefresh.Location = new System.Drawing.Point(5, 6);
this.btnRefresh.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(100, 28);
this.btnRefresh.TabIndex = 10;
this.btnRefresh.Text = "刷新数据";
this.btnRefresh.UseVisualStyleBackColor = false;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// Column6
//
this.Column6.DataPropertyName = "IsSelected";
......@@ -764,6 +694,76 @@
this.PrintTime.Name = "PrintTime";
this.PrintTime.Width = 150;
//
// panel2
//
this.panel2.Controls.Add(this.tbSearch);
this.panel2.Controls.Add(this.btnSearch);
this.panel2.Controls.Add(this.btnPrint);
this.panel2.Controls.Add(this.btnRefresh);
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
this.panel2.Location = new System.Drawing.Point(5, 31);
this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.panel2.Name = "panel2";
this.panel2.Padding = new System.Windows.Forms.Padding(5, 6, 5, 6);
this.panel2.Size = new System.Drawing.Size(1179, 40);
this.panel2.TabIndex = 5;
//
// tbSearch
//
this.tbSearch.Dock = System.Windows.Forms.DockStyle.Fill;
this.tbSearch.Location = new System.Drawing.Point(105, 6);
this.tbSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tbSearch.Name = "tbSearch";
this.tbSearch.Size = new System.Drawing.Size(869, 32);
this.tbSearch.TabIndex = 17;
this.tbSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbSearch_KeyDown);
//
// btnSearch
//
this.btnSearch.Dock = System.Windows.Forms.DockStyle.Right;
this.btnSearch.Enabled = false;
this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSearch.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
this.btnSearch.Location = new System.Drawing.Point(974, 6);
this.btnSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(100, 28);
this.btnSearch.TabIndex = 16;
this.btnSearch.Text = "搜索";
this.btnSearch.UseVisualStyleBackColor = false;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnPrint
//
this.btnPrint.BackColor = System.Drawing.SystemColors.Highlight;
this.btnPrint.Dock = System.Windows.Forms.DockStyle.Right;
this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPrint.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnPrint.Location = new System.Drawing.Point(1074, 6);
this.btnPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(100, 28);
this.btnPrint.TabIndex = 11;
this.btnPrint.Text = "开始打印";
this.btnPrint.UseVisualStyleBackColor = false;
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
//
// btnRefresh
//
this.btnRefresh.BackColor = System.Drawing.Color.LightGreen;
this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Left;
this.btnRefresh.Enabled = false;
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnRefresh.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnRefresh.Location = new System.Drawing.Point(5, 6);
this.btnRefresh.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(100, 28);
this.btnRefresh.TabIndex = 10;
this.btnRefresh.Text = "刷新数据";
this.btnRefresh.UseVisualStyleBackColor = false;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// FrmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment