namespace MotorPlantView { 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() { dataGridView = new DataGridView(); buttonAdd = new Button(); buttonUpdate = new Button(); buttonReset = new Button(); buttonDelete = new Button(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // dataGridView // dataGridView.BackgroundColor = SystemColors.ButtonHighlight; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Location = new Point(12, 12); dataGridView.Name = "dataGridView"; dataGridView.RowTemplate.Height = 25; dataGridView.Size = new Size(617, 426); dataGridView.TabIndex = 0; // // buttonAdd // buttonAdd.Location = new Point(665, 114); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(123, 45); buttonAdd.TabIndex = 1; buttonAdd.Text = "Добавить"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += buttonAdd_Click; // // buttonUpdate // buttonUpdate.Location = new Point(665, 165); buttonUpdate.Name = "buttonUpdate"; buttonUpdate.Size = new Size(123, 44); buttonUpdate.TabIndex = 2; buttonUpdate.Text = "Изменить"; buttonUpdate.UseVisualStyleBackColor = true; buttonUpdate.Click += buttonUpdate_Click; // // buttonReset // buttonReset.Location = new Point(665, 215); buttonReset.Name = "buttonReset"; buttonReset.Size = new Size(123, 48); buttonReset.TabIndex = 3; buttonReset.Text = "Обновить"; buttonReset.UseVisualStyleBackColor = true; buttonReset.Click += buttonReset_Click; // // buttonDelete // buttonDelete.Location = new Point(665, 269); buttonDelete.Name = "buttonDelete"; buttonDelete.Size = new Size(123, 48); buttonDelete.TabIndex = 4; buttonDelete.Text = "Удалить"; buttonDelete.UseVisualStyleBackColor = true; buttonDelete.Click += buttonDelete_Click; // // FormShops // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(buttonDelete); Controls.Add(buttonReset); Controls.Add(buttonUpdate); Controls.Add(buttonAdd); Controls.Add(dataGridView); Name = "FormShops"; Text = "FormShops"; Load += FormShops_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonAdd; private Button buttonUpdate; private Button buttonReset; private Button buttonDelete; } }