95 lines
3.6 KiB
C#
95 lines
3.6 KiB
C#
namespace OrderManagement
|
|
{
|
|
partial class OrderStateDlg
|
|
{
|
|
/// <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.orderLabel = new System.Windows.Forms.Label();
|
|
this.orderTextBox = new System.Windows.Forms.TextBox();
|
|
this.stateLabel = new System.Windows.Forms.Label();
|
|
this.stateTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// orderLabel
|
|
//
|
|
this.orderLabel.AutoSize = true;
|
|
this.orderLabel.Location = new System.Drawing.Point(28, 26);
|
|
this.orderLabel.Name = "orderLabel";
|
|
this.orderLabel.Size = new System.Drawing.Size(33, 13);
|
|
this.orderLabel.TabIndex = 0;
|
|
this.orderLabel.Text = "Order";
|
|
//
|
|
// orderTextBox
|
|
//
|
|
this.orderTextBox.Enabled = false;
|
|
this.orderTextBox.Location = new System.Drawing.Point(108, 23);
|
|
this.orderTextBox.Name = "orderTextBox";
|
|
this.orderTextBox.Size = new System.Drawing.Size(100, 20);
|
|
this.orderTextBox.TabIndex = 1;
|
|
//
|
|
// stateLabel
|
|
//
|
|
this.stateLabel.AutoSize = true;
|
|
this.stateLabel.Location = new System.Drawing.Point(28, 54);
|
|
this.stateLabel.Name = "stateLabel";
|
|
this.stateLabel.Size = new System.Drawing.Size(32, 13);
|
|
this.stateLabel.TabIndex = 2;
|
|
this.stateLabel.Text = "State";
|
|
//
|
|
// stateTextBox
|
|
//
|
|
this.stateTextBox.Enabled = false;
|
|
this.stateTextBox.Location = new System.Drawing.Point(108, 51);
|
|
this.stateTextBox.Name = "stateTextBox";
|
|
this.stateTextBox.Size = new System.Drawing.Size(100, 20);
|
|
this.stateTextBox.TabIndex = 3;
|
|
//
|
|
// OrderStateDlg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(479, 261);
|
|
this.Controls.Add(this.stateTextBox);
|
|
this.Controls.Add(this.stateLabel);
|
|
this.Controls.Add(this.orderTextBox);
|
|
this.Controls.Add(this.orderLabel);
|
|
this.Name = "OrderStateDlg";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Order state";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label orderLabel;
|
|
private System.Windows.Forms.TextBox orderTextBox;
|
|
private System.Windows.Forms.Label stateLabel;
|
|
private System.Windows.Forms.TextBox stateTextBox;
|
|
}
|
|
} |