namespace SushiBarView { partial class FormShops { /// /// 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() { dataGridViewShops = new DataGridView(); buttonAdd = new Button(); buttonUpd = new Button(); buttonDel = new Button(); buttonRef = new Button(); ((System.ComponentModel.ISupportInitialize)dataGridViewShops).BeginInit(); SuspendLayout(); // // dataGridViewShops // dataGridViewShops.AllowUserToAddRows = false; dataGridViewShops.AllowUserToDeleteRows = false; dataGridViewShops.BackgroundColor = SystemColors.Control; dataGridViewShops.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridViewShops.Location = new Point(12, 12); dataGridViewShops.Name = "dataGridViewShops"; dataGridViewShops.RowTemplate.Height = 25; dataGridViewShops.Size = new Size(501, 342); dataGridViewShops.TabIndex = 0; // // buttonAdd // buttonAdd.Location = new Point(548, 12); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(138, 38); buttonAdd.TabIndex = 1; buttonAdd.Text = "Добавить"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += ButtonAdd_Click; // // buttonUpd // buttonUpd.Location = new Point(548, 77); buttonUpd.Name = "buttonUpd"; buttonUpd.Size = new Size(138, 38); buttonUpd.TabIndex = 2; buttonUpd.Text = "Изменить"; buttonUpd.UseVisualStyleBackColor = true; buttonUpd.Click += ButtonUpd_Click; // // buttonDel // buttonDel.Location = new Point(548, 140); buttonDel.Name = "buttonDel"; buttonDel.Size = new Size(138, 38); buttonDel.TabIndex = 3; buttonDel.Text = "Удалить"; buttonDel.UseVisualStyleBackColor = true; buttonDel.Click += ButtonDel_Click; // // buttonRef // buttonRef.Location = new Point(548, 204); buttonRef.Name = "buttonRef"; buttonRef.Size = new Size(138, 38); buttonRef.TabIndex = 4; buttonRef.Text = "Обновить список"; buttonRef.UseVisualStyleBackColor = true; buttonRef.Click += ButtonRef_Click; // // FormShops // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(726, 366); Controls.Add(buttonRef); Controls.Add(buttonDel); Controls.Add(buttonUpd); Controls.Add(buttonAdd); Controls.Add(dataGridViewShops); Name = "FormShops"; Text = "Магазины"; Load += FormShops_Load; ((System.ComponentModel.ISupportInitialize)dataGridViewShops).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridViewShops; private Button buttonAdd; private Button buttonUpd; private Button buttonDel; private Button buttonRef; } }