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(); labelOpeningDate = new Label(); dateTimePickerAtelier = new DateTimePicker(); dataGridViewDresses = new DataGridView(); Id = new DataGridViewTextBoxColumn(); DressName = new DataGridViewTextBoxColumn(); Quantity = new DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)dataGridViewDresses).BeginInit(); SuspendLayout(); // // cancelButton // cancelButton.Location = new Point(310, 301); 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, 301); 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; // // labelOpeningDate // labelOpeningDate.AutoSize = true; labelOpeningDate.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelOpeningDate.Location = new Point(1, 87); labelOpeningDate.Name = "labelOpeningDate"; labelOpeningDate.Size = new Size(128, 25); labelOpeningDate.TabIndex = 13; labelOpeningDate.Text = "OpeningDate:"; // // dateTimePickerAtelier // dateTimePickerAtelier.Location = new Point(135, 89); dateTimePickerAtelier.Name = "dateTimePickerAtelier"; dateTimePickerAtelier.Size = new Size(200, 23); dateTimePickerAtelier.TabIndex = 14; // // dataGridViewDresses // dataGridViewDresses.BackgroundColor = SystemColors.ControlLightLight; dataGridViewDresses.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridViewDresses.Columns.AddRange(new DataGridViewColumn[] { Id, DressName, Quantity }); dataGridViewDresses.Location = new Point(12, 136); dataGridViewDresses.Name = "dataGridViewDresses"; dataGridViewDresses.RowTemplate.Height = 25; dataGridViewDresses.Size = new Size(372, 150); dataGridViewDresses.TabIndex = 15; // // Id // Id.HeaderText = "Id"; Id.Name = "Id"; Id.Visible = false; // // DressName // DressName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; DressName.HeaderText = "DressName"; DressName.Name = "DressName"; // // Quantity // Quantity.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; Quantity.HeaderText = "Quantity"; Quantity.Name = "Quantity"; // // FormAtelier // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(396, 329); Controls.Add(dataGridViewDresses); Controls.Add(dateTimePickerAtelier); Controls.Add(labelOpeningDate); Controls.Add(cancelButton); Controls.Add(saveAtelierButton); Controls.Add(atelierAddressLabel); Controls.Add(atelierNameLabel); Controls.Add(atelierAddressTextBox); Controls.Add(atelierNameTextBox); Name = "FormAtelier"; Text = "Atelier"; Load += FormAtelier_Load; ((System.ComponentModel.ISupportInitialize)dataGridViewDresses).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Button cancelButton; private Button saveAtelierButton; private Label atelierAddressLabel; private Label atelierNameLabel; private TextBox atelierAddressTextBox; private TextBox atelierNameTextBox; private Label labelOpeningDate; private DateTimePicker dateTimePickerAtelier; private DataGridView dataGridViewDresses; private DataGridViewTextBoxColumn Id; private DataGridViewTextBoxColumn DressName; private DataGridViewTextBoxColumn Quantity; } }