89 lines
3.6 KiB
C#
89 lines
3.6 KiB
C#
|
namespace ConfectioneryView
|
|||
|
{
|
|||
|
partial class FormShop
|
|||
|
{
|
|||
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|||
|
this.comboBoxShop = new System.Windows.Forms.ComboBox();
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(124, 15);
|
|||
|
this.label1.TabIndex = 0;
|
|||
|
this.label1.Text = "Выбранный магазин:";
|
|||
|
//
|
|||
|
// comboBoxShop
|
|||
|
//
|
|||
|
this.comboBoxShop.FormattingEnabled = true;
|
|||
|
this.comboBoxShop.Location = new System.Drawing.Point(142, 9);
|
|||
|
this.comboBoxShop.Name = "comboBoxShop";
|
|||
|
this.comboBoxShop.Size = new System.Drawing.Size(121, 23);
|
|||
|
this.comboBoxShop.TabIndex = 1;
|
|||
|
this.comboBoxShop.SelectedIndexChanged += new System.EventHandler(this.ComboBoxShop_SelectedIndexChanged);
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|||
|
| System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView.Location = new System.Drawing.Point(12, 38);
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowTemplate.Height = 25;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(583, 242);
|
|||
|
this.dataGridView.TabIndex = 2;
|
|||
|
//
|
|||
|
// FormShop
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(607, 292);
|
|||
|
this.Controls.Add(this.dataGridView);
|
|||
|
this.Controls.Add(this.comboBoxShop);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Name = "FormShop";
|
|||
|
this.Text = "Просмотр изделий магазина";
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label label1;
|
|||
|
private ComboBox comboBoxShop;
|
|||
|
private DataGridView dataGridView;
|
|||
|
}
|
|||
|
}
|