namespace SewingDresses { partial class FormAtelier { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { cancelButton = new Button(); saveAtelierButton = new Button(); atelierAddressLabel = new Label(); atelierNameLabel = new Label(); atelierAddressTextBox = new TextBox(); atelierNameTextBox = new TextBox(); labelMaxQuantity = new Label(); atelierTextBoxCapacity = new TextBox(); SuspendLayout(); // // cancelButton // cancelButton.Location = new Point(310, 129); cancelButton.Name = "cancelButton"; cancelButton.Size = new Size(80, 25); cancelButton.TabIndex = 11; cancelButton.Text = "Cancel"; cancelButton.UseVisualStyleBackColor = true; cancelButton.Click += cancelButton_Click; // // saveAtelierButton // saveAtelierButton.Location = new Point(224, 129); saveAtelierButton.Name = "saveAtelierButton"; saveAtelierButton.Size = new Size(80, 25); saveAtelierButton.TabIndex = 10; saveAtelierButton.Text = "Save"; saveAtelierButton.UseVisualStyleBackColor = true; saveAtelierButton.Click += saveAtelierButton_Click; // // atelierAddressLabel // atelierAddressLabel.AutoSize = true; atelierAddressLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); atelierAddressLabel.Location = new Point(1, 46); atelierAddressLabel.Name = "atelierAddressLabel"; atelierAddressLabel.Size = new Size(83, 25); atelierAddressLabel.TabIndex = 9; atelierAddressLabel.Text = "Address:"; // // atelierNameLabel // atelierNameLabel.AutoSize = true; atelierNameLabel.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); atelierNameLabel.Location = new Point(1, 10); atelierNameLabel.Name = "atelierNameLabel"; atelierNameLabel.Size = new Size(66, 25); atelierNameLabel.TabIndex = 8; atelierNameLabel.Text = "Name:"; // // atelierAddressTextBox // atelierAddressTextBox.Location = new Point(90, 48); atelierAddressTextBox.Name = "atelierAddressTextBox"; atelierAddressTextBox.Size = new Size(300, 23); atelierAddressTextBox.TabIndex = 7; // // atelierNameTextBox // atelierNameTextBox.Location = new Point(90, 12); atelierNameTextBox.Name = "atelierNameTextBox"; atelierNameTextBox.Size = new Size(300, 23); atelierNameTextBox.TabIndex = 6; // // labelMaxQuantity // labelMaxQuantity.AutoSize = true; labelMaxQuantity.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelMaxQuantity.Location = new Point(1, 87); labelMaxQuantity.Name = "labelMaxQuantity"; labelMaxQuantity.Size = new Size(88, 25); labelMaxQuantity.TabIndex = 13; labelMaxQuantity.Text = "Capacity:"; // // atelierTextBoxCapacity // atelierTextBoxCapacity.Location = new Point(90, 87); atelierTextBoxCapacity.Name = "atelierTextBoxCapacity"; atelierTextBoxCapacity.Size = new Size(41, 23); atelierTextBoxCapacity.TabIndex = 12; // // FormAtelier // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(396, 166); Controls.Add(labelMaxQuantity); Controls.Add(atelierTextBoxCapacity); Controls.Add(cancelButton); Controls.Add(saveAtelierButton); Controls.Add(atelierAddressLabel); Controls.Add(atelierNameLabel); Controls.Add(atelierAddressTextBox); Controls.Add(atelierNameTextBox); Name = "FormAtelier"; Text = "Atelier creation"; Load += FormAtelier_Load; ResumeLayout(false); PerformLayout(); } #endregion private Button cancelButton; private Button saveAtelierButton; private Label atelierAddressLabel; private Label atelierNameLabel; private TextBox atelierAddressTextBox; private TextBox atelierNameTextBox; private Label labelMaxQuantity; private TextBox atelierTextBoxCapacity; } }