namespace SoftwareInstallationView { partial class FormPackage { /// /// 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() { labelName = new Label(); labelPrice = new Label(); textBoxName = new TextBox(); textBoxPrice = new TextBox(); componentsGroupBox = new GroupBox(); buttonRefresh = new Button(); buttonDelete = new Button(); buttonUpdate = new Button(); buttonAdd = new Button(); componentsDataGridView = new DataGridView(); ColumnId = new DataGridViewTextBoxColumn(); ColumnComponent = new DataGridViewTextBoxColumn(); ColumnCount = new DataGridViewTextBoxColumn(); buttonSave = new Button(); buttonCancel = new Button(); componentsGroupBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)componentsDataGridView).BeginInit(); SuspendLayout(); // // labelName // labelName.AutoSize = true; labelName.Location = new Point(12, 9); labelName.Name = "labelName"; labelName.Size = new Size(59, 15); labelName.TabIndex = 0; labelName.Text = "Название"; // // labelPrice // labelPrice.AutoSize = true; labelPrice.Location = new Point(12, 57); labelPrice.Name = "labelPrice"; labelPrice.Size = new Size(67, 15); labelPrice.TabIndex = 1; labelPrice.Text = "Стоимость"; // // textBoxName // textBoxName.Location = new Point(85, 12); textBoxName.Name = "textBoxName"; textBoxName.Size = new Size(326, 23); textBoxName.TabIndex = 2; // // textBoxPrice // textBoxPrice.Location = new Point(85, 54); textBoxPrice.Name = "textBoxPrice"; textBoxPrice.Size = new Size(186, 23); textBoxPrice.TabIndex = 3; // // componentsGroupBox // componentsGroupBox.Controls.Add(buttonRefresh); componentsGroupBox.Controls.Add(buttonDelete); componentsGroupBox.Controls.Add(buttonUpdate); componentsGroupBox.Controls.Add(buttonAdd); componentsGroupBox.Controls.Add(componentsDataGridView); componentsGroupBox.Location = new Point(12, 98); componentsGroupBox.Name = "componentsGroupBox"; componentsGroupBox.Size = new Size(672, 340); componentsGroupBox.TabIndex = 4; componentsGroupBox.TabStop = false; componentsGroupBox.Text = "Компоненты"; // // buttonRefresh // buttonRefresh.Location = new Point(541, 241); buttonRefresh.Name = "buttonRefresh"; buttonRefresh.Size = new Size(113, 23); buttonRefresh.TabIndex = 4; buttonRefresh.Text = "Обновить"; buttonRefresh.UseVisualStyleBackColor = true; buttonRefresh.Click += buttonRefresh_Click; // // buttonDelete // buttonDelete.Location = new Point(541, 193); buttonDelete.Name = "buttonDelete"; buttonDelete.Size = new Size(113, 23); buttonDelete.TabIndex = 3; buttonDelete.Text = "Удалить"; buttonDelete.UseVisualStyleBackColor = true; buttonDelete.Click += buttonDelete_Click; // // buttonUpdate // buttonUpdate.Location = new Point(541, 140); buttonUpdate.Name = "buttonUpdate"; buttonUpdate.Size = new Size(113, 23); buttonUpdate.TabIndex = 2; buttonUpdate.Text = "Изменить"; buttonUpdate.UseVisualStyleBackColor = true; buttonUpdate.Click += buttonUpdate_Click; // // buttonAdd // buttonAdd.Location = new Point(541, 90); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(113, 23); buttonAdd.TabIndex = 1; buttonAdd.Text = "Добавить"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += buttonAdd_Click; // // componentsDataGridView // componentsDataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; componentsDataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnId, ColumnComponent, ColumnCount }); componentsDataGridView.Location = new Point(0, 19); componentsDataGridView.Name = "componentsDataGridView"; componentsDataGridView.Size = new Size(521, 321); componentsDataGridView.TabIndex = 0; // // ColumnId // ColumnId.HeaderText = "Id"; ColumnId.Name = "ColumnId"; ColumnId.Visible = false; // // ColumnComponent // ColumnComponent.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; ColumnComponent.HeaderText = "Компонент"; ColumnComponent.Name = "ColumnComponent"; // // ColumnCount // ColumnCount.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; ColumnCount.HeaderText = "Количество"; ColumnCount.Name = "ColumnCount"; // // buttonSave // buttonSave.Location = new Point(465, 457); buttonSave.Name = "buttonSave"; buttonSave.Size = new Size(100, 25); buttonSave.TabIndex = 5; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; buttonSave.Click += buttonSave_Click; // // buttonCancel // buttonCancel.Location = new Point(584, 457); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(100, 25); buttonCancel.TabIndex = 6; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormPackage // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(705, 494); Controls.Add(buttonSave); Controls.Add(buttonCancel); Controls.Add(componentsGroupBox); Controls.Add(textBoxPrice); Controls.Add(textBoxName); Controls.Add(labelPrice); Controls.Add(labelName); Name = "FormPackage"; Text = "FormPackage"; Load += FormPackage_Load; componentsGroupBox.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)componentsDataGridView).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Label labelName; private Label labelPrice; private TextBox textBoxName; private TextBox textBoxPrice; private GroupBox componentsGroupBox; private DataGridView componentsDataGridView; private Button buttonRefresh; private Button buttonDelete; private Button buttonUpdate; private Button buttonAdd; private DataGridViewTextBoxColumn ColumnId; private DataGridViewTextBoxColumn ColumnComponent; private DataGridViewTextBoxColumn ColumnCount; private Button buttonSave; private Button buttonCancel; } }