namespace CarRepairShopView { 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(); buttonAddShop = new Button(); buttonUpdShop = new Button(); buttonDelShop = new Button(); buttonRefShop = new Button(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // dataGridView // dataGridView.AllowUserToAddRows = false; dataGridView.AllowUserToDeleteRows = false; dataGridView.BackgroundColor = Color.White; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Dock = DockStyle.Left; dataGridView.Location = new Point(0, 0); dataGridView.Name = "dataGridView"; dataGridView.ReadOnly = true; dataGridView.RowHeadersVisible = false; dataGridView.RowTemplate.Height = 25; dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView.ShowCellErrors = false; dataGridView.ShowCellToolTips = false; dataGridView.ShowEditingIcon = false; dataGridView.ShowRowErrors = false; dataGridView.Size = new Size(611, 450); dataGridView.TabIndex = 0; // // buttonAddShop // buttonAddShop.Location = new Point(638, 12); buttonAddShop.Name = "buttonAddShop"; buttonAddShop.Size = new Size(133, 45); buttonAddShop.TabIndex = 1; buttonAddShop.Text = "Добавить"; buttonAddShop.UseVisualStyleBackColor = true; buttonAddShop.Click += buttonAddShop_Click; // // buttonUpdShop // buttonUpdShop.Location = new Point(638, 73); buttonUpdShop.Name = "buttonUpdShop"; buttonUpdShop.Size = new Size(133, 45); buttonUpdShop.TabIndex = 2; buttonUpdShop.Text = "Редактировать"; buttonUpdShop.UseVisualStyleBackColor = true; buttonUpdShop.Click += buttonUpdShop_Click; // // buttonDelShop // buttonDelShop.Location = new Point(638, 137); buttonDelShop.Name = "buttonDelShop"; buttonDelShop.Size = new Size(133, 45); buttonDelShop.TabIndex = 3; buttonDelShop.Text = "Удалить"; buttonDelShop.UseVisualStyleBackColor = true; buttonDelShop.Click += buttonDelShop_Click; // // buttonRefShop // buttonRefShop.Location = new Point(638, 204); buttonRefShop.Name = "buttonRefShop"; buttonRefShop.Size = new Size(133, 45); buttonRefShop.TabIndex = 4; buttonRefShop.Text = "Обновить"; buttonRefShop.UseVisualStyleBackColor = true; buttonRefShop.Click += buttonRefShop_Click; // // FormShops // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(buttonRefShop); Controls.Add(buttonDelShop); Controls.Add(buttonUpdShop); Controls.Add(buttonAddShop); Controls.Add(dataGridView); Name = "FormShops"; Text = "Магазины"; Load += FormShops_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private DataGridView dataGridView; private Button buttonAddShop; private Button buttonUpdShop; private Button buttonDelShop; private Button buttonRefShop; } }