101 lines
4.2 KiB
C#
101 lines
4.2 KiB
C#
namespace LawFirmView
|
|
{
|
|
partial class FormReportDocumentComponents
|
|
{
|
|
/// <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.buttonSaveToExcel = new System.Windows.Forms.Button();
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSaveToExcel
|
|
//
|
|
this.buttonSaveToExcel.Location = new System.Drawing.Point(22, 12);
|
|
this.buttonSaveToExcel.Name = "buttonSaveToExcel";
|
|
this.buttonSaveToExcel.Size = new System.Drawing.Size(160, 23);
|
|
this.buttonSaveToExcel.TabIndex = 0;
|
|
this.buttonSaveToExcel.Text = "Сохранить в Excel";
|
|
this.buttonSaveToExcel.UseVisualStyleBackColor = true;
|
|
this.buttonSaveToExcel.Click += new System.EventHandler(this.buttonSaveToExcel_Click);
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Column1,
|
|
this.Column2,
|
|
this.Column3});
|
|
this.dataGridView.Location = new System.Drawing.Point(22, 41);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(546, 305);
|
|
this.dataGridView.TabIndex = 1;
|
|
//
|
|
// Column1
|
|
//
|
|
this.Column1.HeaderText = "Компонент";
|
|
this.Column1.Name = "Column1";
|
|
//
|
|
// Column2
|
|
//
|
|
this.Column2.HeaderText = "Пакет документов";
|
|
this.Column2.Name = "Column2";
|
|
//
|
|
// Column3
|
|
//
|
|
this.Column3.HeaderText = "Количество";
|
|
this.Column3.Name = "Column3";
|
|
//
|
|
// FormReportDocumentComponents
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(601, 391);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Controls.Add(this.buttonSaveToExcel);
|
|
this.Name = "FormReportDocumentComponents";
|
|
this.Text = "FormReportDocumentComponents";
|
|
this.Load += new System.EventHandler(this.FormReportDocumentComponents_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSaveToExcel;
|
|
private DataGridView dataGridView;
|
|
private DataGridViewTextBoxColumn Column1;
|
|
private DataGridViewTextBoxColumn Column2;
|
|
private DataGridViewTextBoxColumn Column3;
|
|
}
|
|
} |