121 lines
5.3 KiB
C#
121 lines
5.3 KiB
C#
namespace SewingDresses
|
|
{
|
|
partial class FormAtelier
|
|
{
|
|
/// <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.cancelButton = new System.Windows.Forms.Button();
|
|
this.saveAtelierButton = new System.Windows.Forms.Button();
|
|
this.atelierAddressLabel = new System.Windows.Forms.Label();
|
|
this.atelierNameLabel = new System.Windows.Forms.Label();
|
|
this.atelierAddressTextBox = new System.Windows.Forms.TextBox();
|
|
this.atelierNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// cancelButton
|
|
//
|
|
this.cancelButton.Location = new System.Drawing.Point(310, 95);
|
|
this.cancelButton.Name = "cancelButton";
|
|
this.cancelButton.Size = new System.Drawing.Size(80, 25);
|
|
this.cancelButton.TabIndex = 11;
|
|
this.cancelButton.Text = "Cancel";
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
|
//
|
|
// saveAtelierButton
|
|
//
|
|
this.saveAtelierButton.Location = new System.Drawing.Point(224, 95);
|
|
this.saveAtelierButton.Name = "saveAtelierButton";
|
|
this.saveAtelierButton.Size = new System.Drawing.Size(80, 25);
|
|
this.saveAtelierButton.TabIndex = 10;
|
|
this.saveAtelierButton.Text = "Save";
|
|
this.saveAtelierButton.UseVisualStyleBackColor = true;
|
|
this.saveAtelierButton.Click += new System.EventHandler(this.saveAtelierButton_Click);
|
|
//
|
|
// atelierAddressLabel
|
|
//
|
|
this.atelierAddressLabel.AutoSize = true;
|
|
this.atelierAddressLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.atelierAddressLabel.Location = new System.Drawing.Point(1, 46);
|
|
this.atelierAddressLabel.Name = "atelierAddressLabel";
|
|
this.atelierAddressLabel.Size = new System.Drawing.Size(83, 25);
|
|
this.atelierAddressLabel.TabIndex = 9;
|
|
this.atelierAddressLabel.Text = "Address:";
|
|
//
|
|
// atelierNameLabel
|
|
//
|
|
this.atelierNameLabel.AutoSize = true;
|
|
this.atelierNameLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.atelierNameLabel.Location = new System.Drawing.Point(1, 10);
|
|
this.atelierNameLabel.Name = "atelierNameLabel";
|
|
this.atelierNameLabel.Size = new System.Drawing.Size(66, 25);
|
|
this.atelierNameLabel.TabIndex = 8;
|
|
this.atelierNameLabel.Text = "Name:";
|
|
//
|
|
// atelierAddressTextBox
|
|
//
|
|
this.atelierAddressTextBox.Location = new System.Drawing.Point(90, 48);
|
|
this.atelierAddressTextBox.Name = "atelierAddressTextBox";
|
|
this.atelierAddressTextBox.Size = new System.Drawing.Size(300, 23);
|
|
this.atelierAddressTextBox.TabIndex = 7;
|
|
//
|
|
// atelierNameTextBox
|
|
//
|
|
this.atelierNameTextBox.Location = new System.Drawing.Point(90, 12);
|
|
this.atelierNameTextBox.Name = "atelierNameTextBox";
|
|
this.atelierNameTextBox.Size = new System.Drawing.Size(300, 23);
|
|
this.atelierNameTextBox.TabIndex = 6;
|
|
//
|
|
// FormAtelier
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(396, 129);
|
|
this.Controls.Add(this.cancelButton);
|
|
this.Controls.Add(this.saveAtelierButton);
|
|
this.Controls.Add(this.atelierAddressLabel);
|
|
this.Controls.Add(this.atelierNameLabel);
|
|
this.Controls.Add(this.atelierAddressTextBox);
|
|
this.Controls.Add(this.atelierNameTextBox);
|
|
this.Name = "FormAtelier";
|
|
this.Text = "FormAtelier";
|
|
this.Load += new System.EventHandler(this.FormAtelier_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button cancelButton;
|
|
private Button saveAtelierButton;
|
|
private Label atelierAddressLabel;
|
|
private Label atelierNameLabel;
|
|
private TextBox atelierAddressTextBox;
|
|
private TextBox atelierNameTextBox;
|
|
}
|
|
} |