122 lines
5.5 KiB
C#
122 lines
5.5 KiB
C#
namespace PlumbingRepairView
|
|
{
|
|
partial class FormReportWorkComponents
|
|
{
|
|
/// <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()
|
|
{
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.ColumnComponent = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnWork = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.buttonSaveToExcel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
this.dataGridView.AllowUserToDeleteRows = false;
|
|
this.dataGridView.AllowUserToOrderColumns = true;
|
|
this.dataGridView.AllowUserToResizeColumns = false;
|
|
this.dataGridView.AllowUserToResizeRows = false;
|
|
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.ColumnComponent,
|
|
this.ColumnWork,
|
|
this.ColumnCount});
|
|
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.dataGridView.Location = new System.Drawing.Point(0, 79);
|
|
this.dataGridView.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
|
this.dataGridView.MultiSelect = false;
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.ReadOnly = true;
|
|
this.dataGridView.RowHeadersVisible = false;
|
|
this.dataGridView.RowHeadersWidth = 62;
|
|
this.dataGridView.Size = new System.Drawing.Size(623, 850);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// ColumnComponent
|
|
//
|
|
this.ColumnComponent.HeaderText = "Компонент";
|
|
this.ColumnComponent.MinimumWidth = 8;
|
|
this.ColumnComponent.Name = "ColumnComponent";
|
|
this.ColumnComponent.ReadOnly = true;
|
|
this.ColumnComponent.Width = 200;
|
|
//
|
|
// ColumnProduct
|
|
//
|
|
this.ColumnWork.HeaderText = "Изделие";
|
|
this.ColumnWork.MinimumWidth = 8;
|
|
this.ColumnWork.Name = "ColumnWork";
|
|
this.ColumnWork.ReadOnly = true;
|
|
this.ColumnWork.Width = 200;
|
|
//
|
|
// ColumnCount
|
|
//
|
|
this.ColumnCount.HeaderText = "Количество";
|
|
this.ColumnCount.MinimumWidth = 8;
|
|
this.ColumnCount.Name = "ColumnCount";
|
|
this.ColumnCount.ReadOnly = true;
|
|
this.ColumnCount.Width = 150;
|
|
//
|
|
// buttonSaveToExcel
|
|
//
|
|
this.buttonSaveToExcel.Location = new System.Drawing.Point(20, 23);
|
|
this.buttonSaveToExcel.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
|
this.buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|
this.buttonSaveToExcel.Size = new System.Drawing.Size(265, 44);
|
|
this.buttonSaveToExcel.TabIndex = 1;
|
|
this.buttonSaveToExcel.Text = "Сохранить в Excel";
|
|
this.buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|
this.buttonSaveToExcel.Click += new System.EventHandler(this.ButtonSaveToExcel_Click);
|
|
//
|
|
// FormReportWorkComponents
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(623, 929);
|
|
this.Controls.Add(this.buttonSaveToExcel);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
|
|
this.Name = "FormReportWorkComponents";
|
|
this.Text = "Компоненты по изделиям";
|
|
this.Load += new System.EventHandler(this.FormReportWorkComponents_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView;
|
|
private System.Windows.Forms.Button buttonSaveToExcel;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnComponent;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnWork;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnCount;
|
|
}
|
|
} |