100 lines
4.0 KiB
C#
100 lines
4.0 KiB
C#
namespace InvoicingTool
|
|
{
|
|
partial class OrderEnd
|
|
{
|
|
/// <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.txtOrderCode = new System.Windows.Forms.TextBox();
|
|
this.btnEnter = new System.Windows.Forms.Button();
|
|
this.lblMess = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtOrderCode
|
|
//
|
|
this.txtOrderCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.txtOrderCode.Font = new System.Drawing.Font("宋体", 14F);
|
|
this.txtOrderCode.ForeColor = System.Drawing.Color.Black;
|
|
this.txtOrderCode.Location = new System.Drawing.Point(39, 43);
|
|
this.txtOrderCode.Name = "txtOrderCode";
|
|
this.txtOrderCode.Size = new System.Drawing.Size(332, 29);
|
|
this.txtOrderCode.TabIndex = 0;
|
|
this.txtOrderCode.WordWrap = false;
|
|
this.txtOrderCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtOrderCode_KeyDown);
|
|
//
|
|
// btnEnter
|
|
//
|
|
this.btnEnter.Enabled = false;
|
|
this.btnEnter.Font = new System.Drawing.Font("宋体", 14F);
|
|
this.btnEnter.Location = new System.Drawing.Point(139, 125);
|
|
this.btnEnter.Name = "btnEnter";
|
|
this.btnEnter.Size = new System.Drawing.Size(128, 43);
|
|
this.btnEnter.TabIndex = 1;
|
|
this.btnEnter.Text = "确认收货";
|
|
this.btnEnter.UseVisualStyleBackColor = true;
|
|
this.btnEnter.Visible = false;
|
|
this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
|
|
//
|
|
// lblMess
|
|
//
|
|
this.lblMess.Font = new System.Drawing.Font("宋体", 12F);
|
|
this.lblMess.ForeColor = System.Drawing.Color.Red;
|
|
this.lblMess.Location = new System.Drawing.Point(12, 85);
|
|
this.lblMess.Name = "lblMess";
|
|
this.lblMess.Size = new System.Drawing.Size(383, 23);
|
|
this.lblMess.TabIndex = 2;
|
|
this.lblMess.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// OrderEnd
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(407, 121);
|
|
this.Controls.Add(this.lblMess);
|
|
this.Controls.Add(this.btnEnter);
|
|
this.Controls.Add(this.txtOrderCode);
|
|
this.ImeMode = System.Windows.Forms.ImeMode.Disable;
|
|
this.KeyPreview = true;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "OrderEnd";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "确认收货";
|
|
this.TopMost = true;
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txtOrderCode;
|
|
private System.Windows.Forms.Button btnEnter;
|
|
private System.Windows.Forms.Label lblMess;
|
|
}
|
|
} |