109 lines
4.3 KiB
C#
109 lines
4.3 KiB
C#
namespace PrecastConcretePlantView
|
||
{
|
||
partial class FormReportReinforcedComponents
|
||
{
|
||
/// <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()
|
||
{
|
||
buttonSaveToExcel = new Button();
|
||
dataGridView = new DataGridView();
|
||
ColumnPastry = new DataGridViewTextBoxColumn();
|
||
ColumnComponent = new DataGridViewTextBoxColumn();
|
||
ColumnCount = new DataGridViewTextBoxColumn();
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// buttonSaveToExcel
|
||
//
|
||
buttonSaveToExcel.Location = new Point(5, 9);
|
||
buttonSaveToExcel.Margin = new Padding(4, 3, 4, 3);
|
||
buttonSaveToExcel.Name = "buttonSaveToExcel";
|
||
buttonSaveToExcel.Size = new Size(186, 27);
|
||
buttonSaveToExcel.TabIndex = 2;
|
||
buttonSaveToExcel.Text = "Сохранить в Excel";
|
||
buttonSaveToExcel.UseVisualStyleBackColor = true;
|
||
buttonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
||
//
|
||
// dataGridView
|
||
//
|
||
dataGridView.AllowUserToOrderColumns = true;
|
||
dataGridView.AllowUserToResizeColumns = false;
|
||
dataGridView.AllowUserToResizeRows = false;
|
||
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ColumnPastry, ColumnComponent, ColumnCount });
|
||
dataGridView.Dock = DockStyle.Bottom;
|
||
dataGridView.Location = new Point(0, 44);
|
||
dataGridView.Margin = new Padding(4, 3, 4, 3);
|
||
dataGridView.MultiSelect = false;
|
||
dataGridView.Name = "dataGridView";
|
||
dataGridView.ReadOnly = true;
|
||
dataGridView.RowHeadersVisible = false;
|
||
dataGridView.Size = new Size(503, 524);
|
||
dataGridView.TabIndex = 3;
|
||
//
|
||
// ColumnPastry
|
||
//
|
||
ColumnPastry.HeaderText = "Изделие";
|
||
ColumnPastry.Name = "ColumnPastry";
|
||
ColumnPastry.ReadOnly = true;
|
||
ColumnPastry.Width = 200;
|
||
//
|
||
// ColumnComponent
|
||
//
|
||
ColumnComponent.HeaderText = "Компонент";
|
||
ColumnComponent.Name = "ColumnComponent";
|
||
ColumnComponent.ReadOnly = true;
|
||
ColumnComponent.Width = 200;
|
||
//
|
||
// ColumnCount
|
||
//
|
||
ColumnCount.HeaderText = "Количество";
|
||
ColumnCount.Name = "ColumnCount";
|
||
ColumnCount.ReadOnly = true;
|
||
//
|
||
// FormReportReinforcedComponents
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(503, 568);
|
||
Controls.Add(dataGridView);
|
||
Controls.Add(buttonSaveToExcel);
|
||
Name = "FormReportReinforcedComponents";
|
||
Text = "Изделия с компонентами";
|
||
Load += FormReportPastryComponents_Load;
|
||
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
||
ResumeLayout(false);
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonSaveToExcel;
|
||
private DataGridView dataGridView;
|
||
private DataGridViewTextBoxColumn ColumnPastry;
|
||
private DataGridViewTextBoxColumn ColumnComponent;
|
||
private DataGridViewTextBoxColumn ColumnCount;
|
||
}
|
||
} |