121 lines
4.5 KiB
C#
121 lines
4.5 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()
|
|
{
|
|
materialNameLabel = new Label();
|
|
materialQuantityLabel = new Label();
|
|
materialComboBox = new ComboBox();
|
|
quantityTextBox = new TextBox();
|
|
saveButton = new Button();
|
|
cancelButton = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// materialNameLabel
|
|
//
|
|
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:";
|
|
//
|
|
// materialQuantityLabel
|
|
//
|
|
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:";
|
|
//
|
|
// materialComboBox
|
|
//
|
|
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;
|
|
//
|
|
// quantityTextBox
|
|
//
|
|
quantityTextBox.Location = new Point(123, 63);
|
|
quantityTextBox.Name = "quantityTextBox";
|
|
quantityTextBox.Size = new Size(342, 23);
|
|
quantityTextBox.TabIndex = 3;
|
|
//
|
|
// saveButton
|
|
//
|
|
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;
|
|
//
|
|
// cancelButton
|
|
//
|
|
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;
|
|
//
|
|
// FormDressMaterial
|
|
//
|
|
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 = "Dress material";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label materialNameLabel;
|
|
private Label materialQuantityLabel;
|
|
private ComboBox materialComboBox;
|
|
private TextBox quantityTextBox;
|
|
private Button saveButton;
|
|
private Button cancelButton;
|
|
}
|
|
} |