116 lines
4.9 KiB
C#
116 lines
4.9 KiB
C#
namespace ConstructionCompanyView
|
|
{
|
|
partial class FormWarehouseReport
|
|
{
|
|
/// <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.comboBoxMaterial = new System.Windows.Forms.ComboBox();
|
|
this.buttonShow = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(3, 26);
|
|
this.dataGridView.MultiSelect = false;
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowHeadersVisible = false;
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dataGridView.Size = new System.Drawing.Size(489, 450);
|
|
this.dataGridView.TabIndex = 11;
|
|
//
|
|
// comboBoxMaterial
|
|
//
|
|
this.comboBoxMaterial.FormattingEnabled = true;
|
|
this.comboBoxMaterial.Location = new System.Drawing.Point(498, 55);
|
|
this.comboBoxMaterial.Name = "comboBoxMaterial";
|
|
this.comboBoxMaterial.Size = new System.Drawing.Size(229, 28);
|
|
this.comboBoxMaterial.TabIndex = 12;
|
|
//
|
|
// buttonShow
|
|
//
|
|
this.buttonShow.Location = new System.Drawing.Point(498, 89);
|
|
this.buttonShow.Name = "buttonShow";
|
|
this.buttonShow.Size = new System.Drawing.Size(134, 29);
|
|
this.buttonShow.TabIndex = 13;
|
|
this.buttonShow.Text = "Отобразить";
|
|
this.buttonShow.UseVisualStyleBackColor = true;
|
|
this.buttonShow.Click += new System.EventHandler(this.buttonShow_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(498, 26);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(78, 20);
|
|
this.label1.TabIndex = 14;
|
|
this.label1.Text = "Материал";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(3, 3);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(280, 20);
|
|
this.label2.TabIndex = 15;
|
|
this.label2.Text = "Рабочие имеющие доступ к материалу";
|
|
//
|
|
// FormWarehouseReport
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(743, 478);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonShow);
|
|
this.Controls.Add(this.comboBoxMaterial);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormWarehouseReport";
|
|
this.Text = "Отчёт использования материлов ";
|
|
this.Load += new System.EventHandler(this.FormWarehouseReport_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView;
|
|
private ComboBox comboBoxMaterial;
|
|
private Button buttonShow;
|
|
private Label label1;
|
|
private Label label2;
|
|
}
|
|
} |