118 lines
5.1 KiB
C#
118 lines
5.1 KiB
C#
namespace SewingDresses
|
|
{
|
|
partial class FormCheckDresses
|
|
{
|
|
/// <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.atelierComboBox = new System.Windows.Forms.ComboBox();
|
|
this.atelierLabel = new System.Windows.Forms.Label();
|
|
this.dressesGridView = new System.Windows.Forms.DataGridView();
|
|
this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.DressName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Quantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dressesGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// atelierComboBox
|
|
//
|
|
this.atelierComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.atelierComboBox.FormattingEnabled = true;
|
|
this.atelierComboBox.Location = new System.Drawing.Point(106, 12);
|
|
this.atelierComboBox.Name = "atelierComboBox";
|
|
this.atelierComboBox.Size = new System.Drawing.Size(293, 23);
|
|
this.atelierComboBox.TabIndex = 5;
|
|
this.atelierComboBox.SelectedIndexChanged += new System.EventHandler(this.atelierComboBox_SelectedIndexChanged);
|
|
//
|
|
// atelierLabel
|
|
//
|
|
this.atelierLabel.AutoSize = true;
|
|
this.atelierLabel.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.atelierLabel.Location = new System.Drawing.Point(4, 9);
|
|
this.atelierLabel.Name = "atelierLabel";
|
|
this.atelierLabel.Size = new System.Drawing.Size(71, 25);
|
|
this.atelierLabel.TabIndex = 4;
|
|
this.atelierLabel.Text = "Atelier:";
|
|
//
|
|
// dressesGridView
|
|
//
|
|
this.dressesGridView.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.dressesGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dressesGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ID,
|
|
this.DressName,
|
|
this.Quantity});
|
|
this.dressesGridView.Location = new System.Drawing.Point(4, 51);
|
|
this.dressesGridView.Name = "dressesGridView";
|
|
this.dressesGridView.RowTemplate.Height = 25;
|
|
this.dressesGridView.Size = new System.Drawing.Size(404, 261);
|
|
this.dressesGridView.TabIndex = 6;
|
|
//
|
|
// ID
|
|
//
|
|
this.ID.HeaderText = "ID";
|
|
this.ID.Name = "ID";
|
|
this.ID.Visible = false;
|
|
//
|
|
// DressName
|
|
//
|
|
this.DressName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.DressName.HeaderText = "DressName";
|
|
this.DressName.Name = "DressName";
|
|
//
|
|
// Quantity
|
|
//
|
|
this.Quantity.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
|
this.Quantity.HeaderText = "Quantity";
|
|
this.Quantity.Name = "Quantity";
|
|
//
|
|
// FormCheckDresses
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(411, 314);
|
|
this.Controls.Add(this.dressesGridView);
|
|
this.Controls.Add(this.atelierComboBox);
|
|
this.Controls.Add(this.atelierLabel);
|
|
this.Name = "FormCheckDresses";
|
|
this.Text = "FormCheckDresses";
|
|
this.Load += new System.EventHandler(this.FormCheckDresses_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dressesGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox atelierComboBox;
|
|
private Label atelierLabel;
|
|
private DataGridView dressesGridView;
|
|
private DataGridViewTextBoxColumn ID;
|
|
private DataGridViewTextBoxColumn DressName;
|
|
private DataGridViewTextBoxColumn Quantity;
|
|
}
|
|
} |