ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallation/FormPackage.Designer.cs

233 lines
8.6 KiB
C#
Raw Normal View History

2024-04-07 17:40:43 +04:00
namespace SoftwareInstallationView
2024-04-07 16:54:02 +04:00
{
2024-04-07 17:40:43 +04:00
partial class FormSoftware
2024-04-07 16:54:02 +04:00
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
2024-04-07 17:40:43 +04:00
labelName = new Label();
textBoxName = new TextBox();
labelPrice = new Label();
textBoxPrice = new TextBox();
groupBoxComponents = new GroupBox();
2024-04-07 17:05:30 +04:00
buttonRef = new Button();
2024-04-07 17:40:43 +04:00
buttonDel = new Button();
buttonUpd = new Button();
buttonAdd = new Button();
2024-04-07 16:54:02 +04:00
dataGridView = new DataGridView();
2024-04-07 17:40:43 +04:00
id = new DataGridViewTextBoxColumn();
2024-04-07 16:54:02 +04:00
Component = new DataGridViewTextBoxColumn();
Count = new DataGridViewTextBoxColumn();
2024-04-07 17:05:30 +04:00
buttonCancel = new Button();
2024-04-07 17:40:43 +04:00
buttonSave = new Button();
groupBoxComponents.SuspendLayout();
2024-04-07 16:54:02 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
2024-04-07 17:40:43 +04:00
// labelName
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
labelName.AutoSize = true;
labelName.Location = new Point(16, 15);
labelName.Name = "labelName";
labelName.Size = new Size(84, 20);
labelName.TabIndex = 0;
labelName.Text = "Название: ";
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// textBoxName
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
textBoxName.Location = new Point(112, 12);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(281, 27);
textBoxName.TabIndex = 1;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// labelPrice
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
labelPrice.AutoSize = true;
labelPrice.Location = new Point(16, 51);
labelPrice.Name = "labelPrice";
labelPrice.Size = new Size(90, 20);
labelPrice.TabIndex = 2;
labelPrice.Text = "Стоимость: ";
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// textBoxPrice
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
textBoxPrice.Location = new Point(112, 51);
textBoxPrice.Name = "textBoxPrice";
textBoxPrice.Size = new Size(154, 27);
textBoxPrice.TabIndex = 3;
//
// groupBoxComponents
//
groupBoxComponents.Controls.Add(buttonRef);
groupBoxComponents.Controls.Add(buttonDel);
groupBoxComponents.Controls.Add(buttonUpd);
groupBoxComponents.Controls.Add(buttonAdd);
groupBoxComponents.Controls.Add(dataGridView);
groupBoxComponents.Location = new Point(11, 84);
groupBoxComponents.Name = "groupBoxComponents";
groupBoxComponents.Size = new Size(642, 319);
groupBoxComponents.TabIndex = 4;
groupBoxComponents.TabStop = false;
groupBoxComponents.Text = "Компоненты";
//
// buttonRef
//
buttonRef.Location = new Point(502, 211);
buttonRef.Name = "buttonRef";
buttonRef.Size = new Size(126, 35);
buttonRef.TabIndex = 4;
buttonRef.Text = "Обновить";
buttonRef.UseVisualStyleBackColor = true;
buttonRef.Click += ButtonRef_Click;
2024-04-07 16:54:02 +04:00
//
// buttonDel
//
2024-04-07 17:40:43 +04:00
buttonDel.Location = new Point(502, 157);
2024-04-07 16:54:02 +04:00
buttonDel.Name = "buttonDel";
2024-04-07 17:40:43 +04:00
buttonDel.Size = new Size(126, 35);
buttonDel.TabIndex = 3;
2024-04-07 16:54:02 +04:00
buttonDel.Text = "Удалить";
buttonDel.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonDel.Click += ButtonDel_Click;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// buttonUpd
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
buttonUpd.Location = new Point(502, 101);
buttonUpd.Name = "buttonUpd";
buttonUpd.Size = new Size(126, 35);
buttonUpd.TabIndex = 2;
buttonUpd.Text = "Изменить";
buttonUpd.UseVisualStyleBackColor = true;
buttonUpd.Click += ButtonUpd_Click;
//
// buttonAdd
//
buttonAdd.Location = new Point(502, 47);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(126, 35);
buttonAdd.TabIndex = 1;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += ButtonAdd_Click;
2024-04-07 16:54:02 +04:00
//
// dataGridView
//
2024-04-07 17:40:43 +04:00
dataGridView.AllowUserToAddRows = false;
dataGridView.AllowUserToDeleteRows = false;
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView.BackgroundColor = Color.White;
2024-04-07 16:54:02 +04:00
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
2024-04-07 17:40:43 +04:00
dataGridView.Columns.AddRange(new DataGridViewColumn[] { id, Component, Count });
dataGridView.Location = new Point(6, 27);
2024-04-07 16:54:02 +04:00
dataGridView.Name = "dataGridView";
dataGridView.ReadOnly = true;
dataGridView.RowHeadersWidth = 51;
2024-04-07 17:40:43 +04:00
dataGridView.RowTemplate.Height = 29;
dataGridView.Size = new Size(475, 287);
dataGridView.TabIndex = 0;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
// id
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:40:43 +04:00
id.HeaderText = "id";
id.MinimumWidth = 6;
id.Name = "id";
id.ReadOnly = true;
id.Visible = false;
2024-04-07 16:54:02 +04:00
//
// Component
//
Component.HeaderText = "Компонент";
Component.MinimumWidth = 6;
Component.Name = "Component";
Component.ReadOnly = true;
//
// Count
//
Count.HeaderText = "Количество";
Count.MinimumWidth = 6;
Count.Name = "Count";
Count.ReadOnly = true;
//
2024-04-07 17:40:43 +04:00
// buttonCancel
2024-04-07 17:05:30 +04:00
//
2024-04-07 17:40:43 +04:00
buttonCancel.Location = new Point(413, 417);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(126, 35);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
2024-04-07 16:54:02 +04:00
//
// buttonSave
//
2024-04-07 17:40:43 +04:00
buttonSave.Location = new Point(280, 417);
2024-04-07 16:54:02 +04:00
buttonSave.Name = "buttonSave";
2024-04-07 17:40:43 +04:00
buttonSave.Size = new Size(126, 35);
buttonSave.TabIndex = 6;
2024-04-07 16:54:02 +04:00
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
2024-04-07 17:40:43 +04:00
buttonSave.Click += ButtonSave_Click;
2024-04-07 17:05:30 +04:00
//
2024-04-07 17:40:43 +04:00
// FormSoftware
2024-04-07 16:54:02 +04:00
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
2024-04-07 17:40:43 +04:00
ClientSize = new Size(685, 463);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(groupBoxComponents);
2024-04-07 16:54:02 +04:00
Controls.Add(textBoxPrice);
2024-04-07 17:40:43 +04:00
Controls.Add(labelPrice);
2024-04-07 16:54:02 +04:00
Controls.Add(textBoxName);
2024-04-07 17:40:43 +04:00
Controls.Add(labelName);
Name = "FormSoftware";
2024-04-07 16:54:02 +04:00
Text = "ПО";
2024-04-07 17:40:43 +04:00
Load += FormSoftware_Load;
groupBoxComponents.ResumeLayout(false);
2024-04-07 16:54:02 +04:00
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
2024-04-07 17:40:43 +04:00
private Label labelName;
private TextBox textBoxName;
private Label labelPrice;
private TextBox textBoxPrice;
private GroupBox groupBoxComponents;
2024-04-07 16:54:02 +04:00
private Button buttonRef;
private Button buttonDel;
private Button buttonUpd;
private Button buttonAdd;
private DataGridView dataGridView;
private DataGridViewTextBoxColumn Component;
private DataGridViewTextBoxColumn Count;
2024-04-07 17:05:30 +04:00
private Button buttonCancel;
2024-04-07 17:40:43 +04:00
private Button buttonSave;
private DataGridViewTextBoxColumn id;
2024-04-07 16:54:02 +04:00
}
}