namespace PersonnelDepartmentView { partial class FormPositions { /// /// 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() { buttonUpdate = new Button(); buttonDelete = new Button(); buttonChange = new Button(); buttonAdd = new Button(); dataGridView = new DataGridView(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // buttonUpdate // buttonUpdate.Location = new Point(255, 9); buttonUpdate.Name = "buttonUpdate"; buttonUpdate.Size = new Size(75, 23); buttonUpdate.TabIndex = 9; buttonUpdate.Text = "Обновить"; buttonUpdate.UseVisualStyleBackColor = true; buttonUpdate.Click += ButtonUpdate_Click; // // buttonDelete // buttonDelete.Location = new Point(174, 9); buttonDelete.Name = "buttonDelete"; buttonDelete.Size = new Size(75, 23); buttonDelete.TabIndex = 8; buttonDelete.Text = "Удалить"; buttonDelete.UseVisualStyleBackColor = true; buttonDelete.Click += ButtonDelete_Click; // // buttonChange // buttonChange.Location = new Point(93, 9); buttonChange.Name = "buttonChange"; buttonChange.Size = new Size(75, 23); buttonChange.TabIndex = 7; buttonChange.Text = "Изменить"; buttonChange.UseVisualStyleBackColor = true; buttonChange.Click += ButtonChange_Click; // // buttonAdd // buttonAdd.Location = new Point(12, 9); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(75, 23); buttonAdd.TabIndex = 6; buttonAdd.Text = "Создать"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += ButtonAdd_Click; // // dataGridView // dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; dataGridView.BackgroundColor = Color.DarkSeaGreen; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Location = new Point(12, 38); dataGridView.Name = "dataGridView"; dataGridView.RowTemplate.Height = 25; dataGridView.Size = new Size(564, 368); dataGridView.TabIndex = 5; // // FormPositions // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(590, 418); Controls.Add(buttonUpdate); Controls.Add(buttonDelete); Controls.Add(buttonChange); Controls.Add(buttonAdd); Controls.Add(dataGridView); MinimumSize = new Size(400, 200); Name = "FormPositions"; StartPosition = FormStartPosition.CenterScreen; Text = "Таблица Должностей"; Load += FormPositions_Load; ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); } #endregion private Button buttonUpdate; private Button buttonDelete; private Button buttonChange; private Button buttonAdd; private DataGridView dataGridView; } }