some minor fixes in forms
This commit is contained in:
parent
506eeedab0
commit
100820bcdb
@ -96,6 +96,7 @@
|
||||
Controls.Add(buttonChange);
|
||||
Controls.Add(buttonAdd);
|
||||
Name = "FormComponents";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Компоненты";
|
||||
Load += ComponentsForm_Load;
|
||||
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
||||
|
@ -126,6 +126,7 @@
|
||||
Controls.Add(labelCount);
|
||||
Controls.Add(labelName);
|
||||
Name = "FormCreateOrder";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Заказ";
|
||||
Load += FormCreateOrder_Load;
|
||||
ResumeLayout(false);
|
||||
|
@ -145,6 +145,7 @@
|
||||
Controls.Add(menuStrip);
|
||||
MainMenuStrip = menuStrip;
|
||||
Name = "FormMain";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Кузница";
|
||||
Load += FormMain_Load;
|
||||
menuStrip.ResumeLayout(false);
|
||||
|
@ -34,15 +34,15 @@
|
||||
textBoxPrice = new TextBox();
|
||||
groupBoxComponents = new GroupBox();
|
||||
dataGridView = new DataGridView();
|
||||
ColumnId = new DataGridViewTextBoxColumn();
|
||||
ColumnName = new DataGridViewTextBoxColumn();
|
||||
ColumnCount = new DataGridViewTextBoxColumn();
|
||||
buttonRefresh = new Button();
|
||||
buttonDelete = new Button();
|
||||
buttonChange = new Button();
|
||||
buttonAdd = new Button();
|
||||
buttonSave = new Button();
|
||||
buttonCancel = new Button();
|
||||
ColumnId = new DataGridViewTextBoxColumn();
|
||||
ColumnName = new DataGridViewTextBoxColumn();
|
||||
ColumnCount = new DataGridViewTextBoxColumn();
|
||||
groupBoxComponents.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
||||
SuspendLayout();
|
||||
@ -105,6 +105,23 @@
|
||||
dataGridView.Size = new Size(439, 256);
|
||||
dataGridView.TabIndex = 5;
|
||||
//
|
||||
// ColumnId
|
||||
//
|
||||
ColumnId.HeaderText = "Идентификатор";
|
||||
ColumnId.Name = "ColumnId";
|
||||
ColumnId.Visible = false;
|
||||
//
|
||||
// ColumnName
|
||||
//
|
||||
ColumnName.FillWeight = 200F;
|
||||
ColumnName.HeaderText = "Компонент";
|
||||
ColumnName.Name = "ColumnName";
|
||||
//
|
||||
// ColumnCount
|
||||
//
|
||||
ColumnCount.HeaderText = "Количество";
|
||||
ColumnCount.Name = "ColumnCount";
|
||||
//
|
||||
// buttonRefresh
|
||||
//
|
||||
buttonRefresh.Location = new Point(470, 137);
|
||||
@ -165,23 +182,6 @@
|
||||
buttonCancel.UseVisualStyleBackColor = true;
|
||||
buttonCancel.Click += ButtonCancel_Click;
|
||||
//
|
||||
// ColumnId
|
||||
//
|
||||
ColumnId.HeaderText = "Идентификатор";
|
||||
ColumnId.Name = "ColumnId";
|
||||
ColumnId.Visible = false;
|
||||
//
|
||||
// ColumnName
|
||||
//
|
||||
ColumnName.FillWeight = 200F;
|
||||
ColumnName.HeaderText = "Компонент";
|
||||
ColumnName.Name = "ColumnName";
|
||||
//
|
||||
// ColumnCount
|
||||
//
|
||||
ColumnCount.HeaderText = "Количество";
|
||||
ColumnCount.Name = "ColumnCount";
|
||||
//
|
||||
// FormManufacture
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
@ -195,6 +195,7 @@
|
||||
Controls.Add(labelCost);
|
||||
Controls.Add(labelName);
|
||||
Name = "FormManufacture";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Изделие";
|
||||
Load += FormManufacture_Load;
|
||||
groupBoxComponents.ResumeLayout(false);
|
||||
|
@ -102,6 +102,7 @@
|
||||
Controls.Add(comboBoxComponent);
|
||||
Controls.Add(labelComponent);
|
||||
Name = "FormManufactureComponent";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Компонент изделия";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
|
@ -96,6 +96,7 @@
|
||||
Controls.Add(buttonAdd);
|
||||
Controls.Add(dataGridView);
|
||||
Name = "FormManufactures";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Изделия";
|
||||
Load += FormManufactures_Load;
|
||||
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
||||
|
Loading…
Reference in New Issue
Block a user