SUBD_Gerimovich_Ilya_PIbd-22/FurnitureAssembly/FurnitureAssemblyView/FormUsersKomment.Designer.cs

122 lines
5.1 KiB
C#
Raw Normal View History

2024-05-24 12:23:50 +04:00
namespace FurnitureAssemblyView
{
2024-05-24 13:42:42 +04:00
partial class FormUsersKomment
2024-05-24 12:23:50 +04:00
{
/// <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()
{
2024-05-24 13:42:42 +04:00
this.labelWorkPiece = new System.Windows.Forms.Label();
2024-05-24 12:23:50 +04:00
this.labelCount = new System.Windows.Forms.Label();
2024-05-24 13:42:42 +04:00
this.comboBoxWorkPiece = new System.Windows.Forms.ComboBox();
2024-05-24 12:23:50 +04:00
this.textBoxCount = new System.Windows.Forms.TextBox();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
2024-05-24 13:42:42 +04:00
// labelWorkPiece
2024-05-24 12:23:50 +04:00
//
2024-05-24 13:42:42 +04:00
this.labelWorkPiece.AutoSize = true;
this.labelWorkPiece.Location = new System.Drawing.Point(27, 25);
this.labelWorkPiece.Name = "labelWorkPiece";
this.labelWorkPiece.Size = new System.Drawing.Size(87, 15);
this.labelWorkPiece.TabIndex = 0;
this.labelWorkPiece.Text = "Комментарий:";
2024-05-24 12:23:50 +04:00
//
// labelCount
//
this.labelCount.AutoSize = true;
2024-05-24 13:42:42 +04:00
this.labelCount.Location = new System.Drawing.Point(27, 59);
2024-05-24 12:23:50 +04:00
this.labelCount.Name = "labelCount";
this.labelCount.Size = new System.Drawing.Size(75, 15);
this.labelCount.TabIndex = 1;
this.labelCount.Text = "Количество:";
//
2024-05-24 13:42:42 +04:00
// comboBoxWorkPiece
2024-05-24 12:23:50 +04:00
//
2024-05-24 13:42:42 +04:00
this.comboBoxWorkPiece.FormattingEnabled = true;
this.comboBoxWorkPiece.Location = new System.Drawing.Point(136, 22);
this.comboBoxWorkPiece.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxWorkPiece.Name = "comboBoxWorkPiece";
this.comboBoxWorkPiece.Size = new System.Drawing.Size(280, 23);
this.comboBoxWorkPiece.TabIndex = 2;
2024-05-24 12:23:50 +04:00
//
// textBoxCount
//
2024-05-24 13:42:42 +04:00
this.textBoxCount.Location = new System.Drawing.Point(136, 57);
2024-05-24 12:23:50 +04:00
this.textBoxCount.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxCount.Name = "textBoxCount";
2024-05-24 13:42:42 +04:00
this.textBoxCount.Size = new System.Drawing.Size(280, 23);
this.textBoxCount.TabIndex = 3;
2024-05-24 12:23:50 +04:00
//
// buttonSave
//
2024-05-24 13:42:42 +04:00
this.buttonSave.Location = new System.Drawing.Point(215, 109);
2024-05-24 12:23:50 +04:00
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
2024-05-24 13:42:42 +04:00
this.buttonSave.Size = new System.Drawing.Size(96, 28);
this.buttonSave.TabIndex = 4;
2024-05-24 12:23:50 +04:00
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
//
// buttonCancel
//
2024-05-24 13:42:42 +04:00
this.buttonCancel.Location = new System.Drawing.Point(317, 109);
2024-05-24 12:23:50 +04:00
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
2024-05-24 13:42:42 +04:00
this.buttonCancel.Size = new System.Drawing.Size(99, 28);
this.buttonCancel.TabIndex = 5;
2024-05-24 12:23:50 +04:00
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
//
2024-05-24 13:42:42 +04:00
// FormUsersKomment
2024-05-24 12:23:50 +04:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2024-05-24 13:42:42 +04:00
this.ClientSize = new System.Drawing.Size(432, 148);
2024-05-24 12:23:50 +04:00
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxCount);
2024-05-24 13:42:42 +04:00
this.Controls.Add(this.comboBoxWorkPiece);
2024-05-24 12:23:50 +04:00
this.Controls.Add(this.labelCount);
2024-05-24 13:42:42 +04:00
this.Controls.Add(this.labelWorkPiece);
2024-05-24 12:23:50 +04:00
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
2024-05-24 13:42:42 +04:00
this.Name = "FormUsersKomment";
this.Text = "Пользователи и Комменты";
2024-05-24 12:23:50 +04:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
2024-05-24 13:42:42 +04:00
private Label labelWorkPiece;
2024-05-24 12:23:50 +04:00
private Label labelCount;
2024-05-24 13:42:42 +04:00
private ComboBox comboBoxWorkPiece;
2024-05-24 12:23:50 +04:00
private TextBox textBoxCount;
private Button buttonSave;
private Button buttonCancel;
}
}