PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormCheckDresses.Designer.cs
2023-06-01 01:58:22 +04:00

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