PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormDressMaterial.Designer.cs
2023-02-13 10:07:35 +04:00

122 lines
5.3 KiB
C#

namespace SewingDresses
{
partial class FormDressMaterial
{
/// <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.materialNameLabel = new System.Windows.Forms.Label();
this.materialQuantityLabel = new System.Windows.Forms.Label();
this.materialComboBox = new System.Windows.Forms.ComboBox();
this.quantityTextBox = new System.Windows.Forms.TextBox();
this.saveButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// materialNameLabel
//
this.materialNameLabel.AutoSize = true;
this.materialNameLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.materialNameLabel.Location = new System.Drawing.Point(12, 19);
this.materialNameLabel.Name = "materialNameLabel";
this.materialNameLabel.Size = new System.Drawing.Size(86, 25);
this.materialNameLabel.TabIndex = 0;
this.materialNameLabel.Text = "Material:";
//
// materialQuantityLabel
//
this.materialQuantityLabel.AutoSize = true;
this.materialQuantityLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.materialQuantityLabel.Location = new System.Drawing.Point(12, 63);
this.materialQuantityLabel.Name = "materialQuantityLabel";
this.materialQuantityLabel.Size = new System.Drawing.Size(88, 25);
this.materialQuantityLabel.TabIndex = 1;
this.materialQuantityLabel.Text = "Quantity:";
//
// materialComboBox
//
this.materialComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.materialComboBox.FormattingEnabled = true;
this.materialComboBox.Location = new System.Drawing.Point(123, 19);
this.materialComboBox.Name = "materialComboBox";
this.materialComboBox.Size = new System.Drawing.Size(342, 23);
this.materialComboBox.TabIndex = 2;
//
// quantityTextBox
//
this.quantityTextBox.Location = new System.Drawing.Point(123, 63);
this.quantityTextBox.Name = "quantityTextBox";
this.quantityTextBox.Size = new System.Drawing.Size(342, 23);
this.quantityTextBox.TabIndex = 3;
//
// saveButton
//
this.saveButton.Location = new System.Drawing.Point(275, 104);
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(92, 23);
this.saveButton.TabIndex = 4;
this.saveButton.Text = "Save";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// cancelButton
//
this.cancelButton.Location = new System.Drawing.Point(373, 104);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(92, 23);
this.cancelButton.TabIndex = 5;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// FormDressMaterial
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(477, 129);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.quantityTextBox);
this.Controls.Add(this.materialComboBox);
this.Controls.Add(this.materialQuantityLabel);
this.Controls.Add(this.materialNameLabel);
this.Name = "FormDressMaterial";
this.Text = "FormDressMaterial";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label materialNameLabel;
private Label materialQuantityLabel;
private ComboBox materialComboBox;
private TextBox quantityTextBox;
private Button saveButton;
private Button cancelButton;
}
}