103 lines
4.1 KiB
C#
103 lines
4.1 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();
|
|
ComponentColumn = new DataGridViewTextBoxColumn();
|
|
ReinforcedColumn = new DataGridViewTextBoxColumn();
|
|
CountColumn = new DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// ButtonSaveToExcel
|
|
//
|
|
ButtonSaveToExcel.Location = new Point(12, 12);
|
|
ButtonSaveToExcel.Name = "ButtonSaveToExcel";
|
|
ButtonSaveToExcel.Size = new Size(157, 29);
|
|
ButtonSaveToExcel.TabIndex = 0;
|
|
ButtonSaveToExcel.Text = " Сохранить в Excel";
|
|
ButtonSaveToExcel.UseVisualStyleBackColor = true;
|
|
ButtonSaveToExcel.Click += ButtonSaveToExcel_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Columns.AddRange(new DataGridViewColumn[] { ComponentColumn, ReinforcedColumn, CountColumn });
|
|
dataGridView.Dock = DockStyle.Bottom;
|
|
dataGridView.Location = new Point(0, 47);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.Size = new Size(800, 403);
|
|
dataGridView.TabIndex = 1;
|
|
//
|
|
// ComponentColumn
|
|
//
|
|
ComponentColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
ComponentColumn.HeaderText = "Компонент";
|
|
ComponentColumn.MinimumWidth = 6;
|
|
ComponentColumn.Name = "ComponentColumn";
|
|
//
|
|
// ReinforcedColumn
|
|
//
|
|
ReinforcedColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
ReinforcedColumn.HeaderText = "Изделие";
|
|
ReinforcedColumn.MinimumWidth = 6;
|
|
ReinforcedColumn.Name = "ReinforcedColumn";
|
|
//
|
|
// CountColumn
|
|
//
|
|
CountColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
CountColumn.HeaderText = "Количество";
|
|
CountColumn.MinimumWidth = 6;
|
|
CountColumn.Name = "CountColumn";
|
|
//
|
|
// FormReportReinforcedComponents
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(ButtonSaveToExcel);
|
|
Name = "FormReportReinforcedComponents";
|
|
Text = "ЖБИ по компонентам";
|
|
Load += FormReportReinforcedComponents_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button ButtonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn ComponentColumn;
|
|
private DataGridViewTextBoxColumn ReinforcedColumn;
|
|
private DataGridViewTextBoxColumn CountColumn;
|
|
}
|
|
} |