2024-12-20 18:05:02 +04:00

145 lines
5.5 KiB
C#

namespace Publication.Forms
{
partial class FormMaterial
{
/// <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()
{
labelDateMaterials = new Label();
labelCount = new Label();
labelTypeMaterials = new Label();
checkedListBox = new CheckedListBox();
dateTimePickerDateMaterial = new DateTimePicker();
numericUpDownCount = new NumericUpDown();
buttonSave = new Button();
buttonBreak = new Button();
((System.ComponentModel.ISupportInitialize)numericUpDownCount).BeginInit();
SuspendLayout();
//
// labelDateMaterials
//
labelDateMaterials.AutoSize = true;
labelDateMaterials.Location = new Point(22, 31);
labelDateMaterials.Name = "labelDateMaterials";
labelDateMaterials.Size = new Size(107, 20);
labelDateMaterials.TabIndex = 0;
labelDateMaterials.Text = "Дата доставки";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(22, 90);
labelCount.Name = "labelCount";
labelCount.Size = new Size(58, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Кол-во";
//
// labelTypeMaterials
//
labelTypeMaterials.AutoSize = true;
labelTypeMaterials.Location = new Point(22, 140);
labelTypeMaterials.Name = "labelTypeMaterials";
labelTypeMaterials.Size = new Size(114, 20);
labelTypeMaterials.TabIndex = 2;
labelTypeMaterials.Text = "Тип материала";
//
// checkedListBox
//
checkedListBox.FormattingEnabled = true;
checkedListBox.Location = new Point(168, 140);
checkedListBox.Name = "checkedListBox";
checkedListBox.Size = new Size(164, 114);
checkedListBox.TabIndex = 3;
//
// dateTimePickerDateMaterial
//
dateTimePickerDateMaterial.Location = new Point(168, 31);
dateTimePickerDateMaterial.Name = "dateTimePickerDateMaterial";
dateTimePickerDateMaterial.Size = new Size(164, 27);
dateTimePickerDateMaterial.TabIndex = 4;
//
// numericUpDownCount
//
numericUpDownCount.Location = new Point(168, 90);
numericUpDownCount.Name = "numericUpDownCount";
numericUpDownCount.Size = new Size(164, 27);
numericUpDownCount.TabIndex = 5;
//
// buttonSave
//
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonSave.Location = new Point(22, 303);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonBreak
//
buttonBreak.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonBreak.Location = new Point(238, 303);
buttonBreak.Name = "buttonBreak";
buttonBreak.Size = new Size(94, 29);
buttonBreak.TabIndex = 7;
buttonBreak.Text = "Отмена";
buttonBreak.UseVisualStyleBackColor = true;
buttonBreak.Click += ButtonBreak_Click;
//
// FormMaterial
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(361, 367);
Controls.Add(buttonBreak);
Controls.Add(buttonSave);
Controls.Add(numericUpDownCount);
Controls.Add(dateTimePickerDateMaterial);
Controls.Add(checkedListBox);
Controls.Add(labelTypeMaterials);
Controls.Add(labelCount);
Controls.Add(labelDateMaterials);
Name = "FormMaterial";
StartPosition = FormStartPosition.CenterScreen;
Text = "Материалы";
((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelDateMaterials;
private Label labelCount;
private Label labelTypeMaterials;
private CheckedListBox checkedListBox;
private DateTimePicker dateTimePickerDateMaterial;
private NumericUpDown numericUpDownCount;
private Button buttonSave;
private Button buttonBreak;
}
}