PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormDressMaterial.Designer.cs

121 lines
4.5 KiB
C#
Raw Permalink Normal View History

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