121 lines
5.5 KiB
C#
121 lines
5.5 KiB
C#
|
namespace SewingDresses
|
|||
|
{
|
|||
|
partial class FormMaterial
|
|||
|
{
|
|||
|
/// <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.componentNameTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.componentPriceTextBox = new System.Windows.Forms.TextBox();
|
|||
|
this.componentNameLabel = new System.Windows.Forms.Label();
|
|||
|
this.priceComponentLabel = new System.Windows.Forms.Label();
|
|||
|
this.saveComponentButton = new System.Windows.Forms.Button();
|
|||
|
this.cancelComponentButton = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// componentNameTextBox
|
|||
|
//
|
|||
|
this.componentNameTextBox.Location = new System.Drawing.Point(120, 26);
|
|||
|
this.componentNameTextBox.Name = "componentNameTextBox";
|
|||
|
this.componentNameTextBox.Size = new System.Drawing.Size(300, 23);
|
|||
|
this.componentNameTextBox.TabIndex = 0;
|
|||
|
//
|
|||
|
// componentPriceTextBox
|
|||
|
//
|
|||
|
this.componentPriceTextBox.Location = new System.Drawing.Point(120, 68);
|
|||
|
this.componentPriceTextBox.Name = "componentPriceTextBox";
|
|||
|
this.componentPriceTextBox.Size = new System.Drawing.Size(158, 23);
|
|||
|
this.componentPriceTextBox.TabIndex = 1;
|
|||
|
//
|
|||
|
// componentNameLabel
|
|||
|
//
|
|||
|
this.componentNameLabel.AutoSize = true;
|
|||
|
this.componentNameLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|||
|
this.componentNameLabel.Location = new System.Drawing.Point(31, 24);
|
|||
|
this.componentNameLabel.Name = "componentNameLabel";
|
|||
|
this.componentNameLabel.Size = new System.Drawing.Size(66, 25);
|
|||
|
this.componentNameLabel.TabIndex = 2;
|
|||
|
this.componentNameLabel.Text = "Name:";
|
|||
|
//
|
|||
|
// priceComponentLabel
|
|||
|
//
|
|||
|
this.priceComponentLabel.AutoSize = true;
|
|||
|
this.priceComponentLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|||
|
this.priceComponentLabel.Location = new System.Drawing.Point(31, 66);
|
|||
|
this.priceComponentLabel.Name = "priceComponentLabel";
|
|||
|
this.priceComponentLabel.Size = new System.Drawing.Size(58, 25);
|
|||
|
this.priceComponentLabel.TabIndex = 3;
|
|||
|
this.priceComponentLabel.Text = "Price:";
|
|||
|
//
|
|||
|
// saveComponentButton
|
|||
|
//
|
|||
|
this.saveComponentButton.Location = new System.Drawing.Point(289, 117);
|
|||
|
this.saveComponentButton.Name = "saveComponentButton";
|
|||
|
this.saveComponentButton.Size = new System.Drawing.Size(80, 25);
|
|||
|
this.saveComponentButton.TabIndex = 4;
|
|||
|
this.saveComponentButton.Text = "Save";
|
|||
|
this.saveComponentButton.UseVisualStyleBackColor = true;
|
|||
|
this.saveComponentButton.Click += new System.EventHandler(this.ButtonSave_Click);
|
|||
|
//
|
|||
|
// cancelComponentButton
|
|||
|
//
|
|||
|
this.cancelComponentButton.Location = new System.Drawing.Point(375, 117);
|
|||
|
this.cancelComponentButton.Name = "cancelComponentButton";
|
|||
|
this.cancelComponentButton.Size = new System.Drawing.Size(80, 25);
|
|||
|
this.cancelComponentButton.TabIndex = 5;
|
|||
|
this.cancelComponentButton.Text = "Cancel";
|
|||
|
this.cancelComponentButton.UseVisualStyleBackColor = true;
|
|||
|
this.cancelComponentButton.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|||
|
//
|
|||
|
// FormMaterial
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(466, 154);
|
|||
|
this.Controls.Add(this.cancelComponentButton);
|
|||
|
this.Controls.Add(this.saveComponentButton);
|
|||
|
this.Controls.Add(this.priceComponentLabel);
|
|||
|
this.Controls.Add(this.componentNameLabel);
|
|||
|
this.Controls.Add(this.componentPriceTextBox);
|
|||
|
this.Controls.Add(this.componentNameTextBox);
|
|||
|
this.Name = "FormMaterial";
|
|||
|
this.Text = "Material";
|
|||
|
this.Load += new System.EventHandler(this.FormComponent_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private TextBox componentNameTextBox;
|
|||
|
private TextBox componentPriceTextBox;
|
|||
|
private Label componentNameLabel;
|
|||
|
private Label priceComponentLabel;
|
|||
|
private Button saveComponentButton;
|
|||
|
private Button cancelComponentButton;
|
|||
|
}
|
|||
|
}
|