115 lines
5.0 KiB
C#
115 lines
5.0 KiB
C#
namespace SewingDresses
|
|
{
|
|
partial class FormAteliers
|
|
{
|
|
/// <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.atelierGridView = new System.Windows.Forms.DataGridView();
|
|
this.ButtonDelete = new System.Windows.Forms.Button();
|
|
this.ButtonChange = new System.Windows.Forms.Button();
|
|
this.ButtonAdd = new System.Windows.Forms.Button();
|
|
this.buttonCheckDresses = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.atelierGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// atelierGridView
|
|
//
|
|
this.atelierGridView.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.atelierGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.atelierGridView.Location = new System.Drawing.Point(1, 2);
|
|
this.atelierGridView.Name = "atelierGridView";
|
|
this.atelierGridView.RowTemplate.Height = 25;
|
|
this.atelierGridView.Size = new System.Drawing.Size(598, 447);
|
|
this.atelierGridView.TabIndex = 0;
|
|
//
|
|
// ButtonDelete
|
|
//
|
|
this.ButtonDelete.Location = new System.Drawing.Point(652, 148);
|
|
this.ButtonDelete.Name = "ButtonDelete";
|
|
this.ButtonDelete.Size = new System.Drawing.Size(92, 35);
|
|
this.ButtonDelete.TabIndex = 6;
|
|
this.ButtonDelete.Text = "Delete";
|
|
this.ButtonDelete.UseVisualStyleBackColor = true;
|
|
this.ButtonDelete.Click += new System.EventHandler(this.ButtonDelete_Click);
|
|
//
|
|
// ButtonChange
|
|
//
|
|
this.ButtonChange.Location = new System.Drawing.Point(652, 91);
|
|
this.ButtonChange.Name = "ButtonChange";
|
|
this.ButtonChange.Size = new System.Drawing.Size(92, 35);
|
|
this.ButtonChange.TabIndex = 5;
|
|
this.ButtonChange.Text = "Change";
|
|
this.ButtonChange.UseVisualStyleBackColor = true;
|
|
this.ButtonChange.Click += new System.EventHandler(this.ButtonChange_Click);
|
|
//
|
|
// ButtonAdd
|
|
//
|
|
this.ButtonAdd.Location = new System.Drawing.Point(652, 36);
|
|
this.ButtonAdd.Name = "ButtonAdd";
|
|
this.ButtonAdd.Size = new System.Drawing.Size(92, 35);
|
|
this.ButtonAdd.TabIndex = 4;
|
|
this.ButtonAdd.Text = "Add";
|
|
this.ButtonAdd.UseVisualStyleBackColor = true;
|
|
this.ButtonAdd.Click += new System.EventHandler(this.ButtonAdd_Click);
|
|
//
|
|
// buttonCheckDresses
|
|
//
|
|
this.buttonCheckDresses.Location = new System.Drawing.Point(652, 210);
|
|
this.buttonCheckDresses.Name = "buttonCheckDresses";
|
|
this.buttonCheckDresses.Size = new System.Drawing.Size(92, 35);
|
|
this.buttonCheckDresses.TabIndex = 7;
|
|
this.buttonCheckDresses.Text = "Dresses";
|
|
this.buttonCheckDresses.UseVisualStyleBackColor = true;
|
|
this.buttonCheckDresses.Click += new System.EventHandler(this.buttonCheckDresses_Click);
|
|
//
|
|
// FormAteliers
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.buttonCheckDresses);
|
|
this.Controls.Add(this.ButtonDelete);
|
|
this.Controls.Add(this.ButtonChange);
|
|
this.Controls.Add(this.ButtonAdd);
|
|
this.Controls.Add(this.atelierGridView);
|
|
this.Name = "FormAteliers";
|
|
this.Text = "FormAteliers";
|
|
this.Load += new System.EventHandler(this.FormAteliers_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.atelierGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView atelierGridView;
|
|
private Button ButtonDelete;
|
|
private Button ButtonChange;
|
|
private Button ButtonAdd;
|
|
private Button buttonCheckDresses;
|
|
}
|
|
} |