195 lines
8.8 KiB
C#
195 lines
8.8 KiB
C#
namespace CheckTool
|
||
{
|
||
partial class Form1
|
||
{
|
||
/// <summary>
|
||
/// 必需的设计器变量。
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// 清理所有正在使用的资源。
|
||
/// </summary>
|
||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows 窗体设计器生成的代码
|
||
|
||
/// <summary>
|
||
/// 设计器支持所需的方法 - 不要
|
||
/// 使用代码编辑器修改此方法的内容。
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.CheckInfo = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.BtnTransfer = new System.Windows.Forms.Button();
|
||
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
||
this.ListCode = new System.Windows.Forms.CheckBox();
|
||
this.StockCode = new System.Windows.Forms.CheckBox();
|
||
this.CheckDate = new System.Windows.Forms.CheckBox();
|
||
this.MashineCode = new System.Windows.Forms.CheckBox();
|
||
this.BtnCorrect = new System.Windows.Forms.Button();
|
||
this.BtnGetDatas = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// CheckInfo
|
||
//
|
||
this.CheckInfo.Location = new System.Drawing.Point(12, 45);
|
||
this.CheckInfo.Multiline = true;
|
||
this.CheckInfo.Name = "CheckInfo";
|
||
this.CheckInfo.Size = new System.Drawing.Size(302, 428);
|
||
this.CheckInfo.TabIndex = 0;
|
||
this.CheckInfo.Visible = false;
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label1.Location = new System.Drawing.Point(12, 13);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(88, 24);
|
||
this.label1.TabIndex = 1;
|
||
this.label1.Text = "盘点数据:";
|
||
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||
this.label1.Visible = false;
|
||
//
|
||
// BtnTransfer
|
||
//
|
||
this.BtnTransfer.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.BtnTransfer.Location = new System.Drawing.Point(394, 9);
|
||
this.BtnTransfer.Name = "BtnTransfer";
|
||
this.BtnTransfer.Size = new System.Drawing.Size(84, 30);
|
||
this.BtnTransfer.TabIndex = 2;
|
||
this.BtnTransfer.Text = "转为列表";
|
||
this.BtnTransfer.UseVisualStyleBackColor = true;
|
||
this.BtnTransfer.Visible = false;
|
||
this.BtnTransfer.Click += new System.EventHandler(this.BtnTransfer_Click);
|
||
//
|
||
// dataGridView1
|
||
//
|
||
this.dataGridView1.AllowUserToAddRows = false;
|
||
this.dataGridView1.AllowUserToDeleteRows = false;
|
||
this.dataGridView1.AllowUserToOrderColumns = true;
|
||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.dataGridView1.Location = new System.Drawing.Point(15, 45);
|
||
this.dataGridView1.Name = "dataGridView1";
|
||
this.dataGridView1.ReadOnly = true;
|
||
this.dataGridView1.RowTemplate.Height = 23;
|
||
this.dataGridView1.Size = new System.Drawing.Size(714, 428);
|
||
this.dataGridView1.TabIndex = 3;
|
||
//
|
||
// ListCode
|
||
//
|
||
this.ListCode.AutoSize = true;
|
||
this.ListCode.Location = new System.Drawing.Point(106, 18);
|
||
this.ListCode.Name = "ListCode";
|
||
this.ListCode.Size = new System.Drawing.Size(48, 16);
|
||
this.ListCode.TabIndex = 4;
|
||
this.ListCode.Text = "单号";
|
||
this.ListCode.UseVisualStyleBackColor = true;
|
||
this.ListCode.Visible = false;
|
||
//
|
||
// StockCode
|
||
//
|
||
this.StockCode.AutoSize = true;
|
||
this.StockCode.Location = new System.Drawing.Point(168, 18);
|
||
this.StockCode.Name = "StockCode";
|
||
this.StockCode.Size = new System.Drawing.Size(60, 16);
|
||
this.StockCode.TabIndex = 5;
|
||
this.StockCode.Text = "批次号";
|
||
this.StockCode.UseVisualStyleBackColor = true;
|
||
this.StockCode.Visible = false;
|
||
//
|
||
// CheckDate
|
||
//
|
||
this.CheckDate.AutoSize = true;
|
||
this.CheckDate.Checked = true;
|
||
this.CheckDate.CheckState = System.Windows.Forms.CheckState.Checked;
|
||
this.CheckDate.Location = new System.Drawing.Point(242, 18);
|
||
this.CheckDate.Name = "CheckDate";
|
||
this.CheckDate.Size = new System.Drawing.Size(72, 16);
|
||
this.CheckDate.TabIndex = 6;
|
||
this.CheckDate.Text = "盘点时间";
|
||
this.CheckDate.UseVisualStyleBackColor = true;
|
||
this.CheckDate.Visible = false;
|
||
//
|
||
// MashineCode
|
||
//
|
||
this.MashineCode.AutoSize = true;
|
||
this.MashineCode.Location = new System.Drawing.Point(328, 18);
|
||
this.MashineCode.Name = "MashineCode";
|
||
this.MashineCode.Size = new System.Drawing.Size(60, 16);
|
||
this.MashineCode.TabIndex = 7;
|
||
this.MashineCode.Text = "机器号";
|
||
this.MashineCode.UseVisualStyleBackColor = true;
|
||
this.MashineCode.Visible = false;
|
||
//
|
||
// BtnCorrect
|
||
//
|
||
this.BtnCorrect.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.BtnCorrect.Location = new System.Drawing.Point(648, 9);
|
||
this.BtnCorrect.Name = "BtnCorrect";
|
||
this.BtnCorrect.Size = new System.Drawing.Size(81, 30);
|
||
this.BtnCorrect.TabIndex = 8;
|
||
this.BtnCorrect.Text = "导出文本";
|
||
this.BtnCorrect.UseVisualStyleBackColor = true;
|
||
this.BtnCorrect.Click += new System.EventHandler(this.BtnCorrect_Click);
|
||
//
|
||
// BtnGetDatas
|
||
//
|
||
this.BtnGetDatas.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.BtnGetDatas.Location = new System.Drawing.Point(15, 9);
|
||
this.BtnGetDatas.Name = "BtnGetDatas";
|
||
this.BtnGetDatas.Size = new System.Drawing.Size(114, 30);
|
||
this.BtnGetDatas.TabIndex = 10;
|
||
this.BtnGetDatas.Text = "获取销售数据";
|
||
this.BtnGetDatas.UseVisualStyleBackColor = true;
|
||
this.BtnGetDatas.Click += new System.EventHandler(this.BtnGetDatas_Click);
|
||
//
|
||
// Form1
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(741, 485);
|
||
this.Controls.Add(this.BtnGetDatas);
|
||
this.Controls.Add(this.BtnCorrect);
|
||
this.Controls.Add(this.MashineCode);
|
||
this.Controls.Add(this.CheckDate);
|
||
this.Controls.Add(this.StockCode);
|
||
this.Controls.Add(this.ListCode);
|
||
this.Controls.Add(this.dataGridView1);
|
||
this.Controls.Add(this.BtnTransfer);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.CheckInfo);
|
||
this.Name = "Form1";
|
||
this.Text = "盘点数据校正工具";
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.TextBox CheckInfo;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Button BtnTransfer;
|
||
private System.Windows.Forms.DataGridView dataGridView1;
|
||
private System.Windows.Forms.CheckBox ListCode;
|
||
private System.Windows.Forms.CheckBox StockCode;
|
||
private System.Windows.Forms.CheckBox CheckDate;
|
||
private System.Windows.Forms.CheckBox MashineCode;
|
||
private System.Windows.Forms.Button BtnCorrect;
|
||
private System.Windows.Forms.Button BtnGetDatas;
|
||
}
|
||
}
|
||
|