119 lines
4.0 KiB
C#
119 lines
4.0 KiB
C#
|
namespace viewmodel
|
|||
|
{
|
|||
|
partial class FormProjectMaterial
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
label1 = new Label();
|
|||
|
label2 = new Label();
|
|||
|
buttonCancel = new Button();
|
|||
|
buttonSave = new Button();
|
|||
|
textBoxCount = new TextBox();
|
|||
|
comboBoxMenu = new ComboBox();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(12, 9);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(62, 15);
|
|||
|
label1.TabIndex = 0;
|
|||
|
label1.Text = "Материал";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(13, 38);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(46, 15);
|
|||
|
label2.TabIndex = 1;
|
|||
|
label2.Text = "Кол-во";
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(236, 64);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(90, 26);
|
|||
|
buttonCancel.TabIndex = 12;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(140, 64);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(90, 26);
|
|||
|
buttonSave.TabIndex = 11;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
textBoxCount.Location = new Point(77, 35);
|
|||
|
textBoxCount.Name = "textBoxCount";
|
|||
|
textBoxCount.Size = new Size(249, 23);
|
|||
|
textBoxCount.TabIndex = 9;
|
|||
|
//
|
|||
|
// comboBoxMenu
|
|||
|
//
|
|||
|
comboBoxMenu.DropDownStyle = ComboBoxStyle.DropDownList;
|
|||
|
comboBoxMenu.FormattingEnabled = true;
|
|||
|
comboBoxMenu.Location = new Point(77, 6);
|
|||
|
comboBoxMenu.Name = "comboBoxMenu";
|
|||
|
comboBoxMenu.Size = new Size(249, 23);
|
|||
|
comboBoxMenu.TabIndex = 8;
|
|||
|
//
|
|||
|
// FormProjectMaterial
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(362, 97);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxCount);
|
|||
|
Controls.Add(comboBoxMenu);
|
|||
|
Controls.Add(label2);
|
|||
|
Controls.Add(label1);
|
|||
|
Name = "FormProjectMaterial";
|
|||
|
Text = "Выбор материалов";
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label label1;
|
|||
|
private Label label2;
|
|||
|
private Button buttonCancel;
|
|||
|
private Button buttonSave;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private ComboBox comboBoxMenu;
|
|||
|
}
|
|||
|
}
|