/
denispirit
/
informationSystem
Обзор
Документация
Войти
/
denispirit
/
informationSystem
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
InformationSystem/NewRepairRequestForm.Designer.cs
176 строк
6 KB
denispirit
Первый коммит. Отправка в репозиторий
29 сен 2025, 10:39
29 сен 2025, 10:39
24ca85c
Код
Авторство
О чём код?
namespace InformationSystem { partial class NewRepairRequestForm { /// <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() { btnCreate = new Button(); btnCancel = new Button(); label1 = new Label(); label2 = new Label(); label3 = new Label(); label4 = new Label(); lblCharCount = new Label(); cmbDeviceType = new ComboBox(); txtBrand = new TextBox(); txtModel = new TextBox(); txtProblemDescription = new TextBox(); SuspendLayout(); // // btnCreate // btnCreate.Location = new Point(657, 50); btnCreate.Name = "btnCreate"; btnCreate.Size = new Size(75, 23); btnCreate.TabIndex = 0; btnCreate.Text = "Создать"; btnCreate.UseVisualStyleBackColor = true; btnCreate.Click += btnCreate_Click_1; // // btnCancel // btnCancel.Location = new Point(658, 84); btnCancel.Name = "btnCancel"; btnCancel.Size = new Size(75, 23); btnCancel.TabIndex = 1; btnCancel.Text = "Закрыть"; btnCancel.UseVisualStyleBackColor = true; btnCancel.Click += btnCancel_Click_1; // // label1 // label1.AutoSize = true; label1.Location = new Point(43, 50); label1.Name = "label1"; label1.Size = new Size(92, 15); label1.TabIndex = 2; label1.Text = "Тип устройства"; // // label2 // label2.AutoSize = true; label2.Location = new Point(43, 84); label2.Name = "label2"; label2.Size = new Size(40, 15); label2.TabIndex = 3; label2.Text = "Бренд"; // // label3 // label3.AutoSize = true; label3.Location = new Point(43, 127); label3.Name = "label3"; label3.Size = new Size(50, 15); label3.TabIndex = 4; label3.Text = "Модель"; // // label4 // label4.AutoSize = true; label4.Location = new Point(43, 170); label4.Name = "label4"; label4.Size = new Size(124, 15); label4.TabIndex = 5; label4.Text = "Описание проблемы"; // // lblCharCount // lblCharCount.AutoSize = true; lblCharCount.Location = new Point(151, 294); lblCharCount.Name = "lblCharCount"; lblCharCount.Size = new Size(99, 15); lblCharCount.TabIndex = 6; lblCharCount.Text = "Символов: 0/500"; // // cmbDeviceType // cmbDeviceType.FormattingEnabled = true; cmbDeviceType.Location = new Point(151, 51); cmbDeviceType.Name = "cmbDeviceType"; cmbDeviceType.Size = new Size(126, 23); cmbDeviceType.TabIndex = 7; // // txtBrand // txtBrand.Location = new Point(151, 85); txtBrand.Name = "txtBrand"; txtBrand.Size = new Size(100, 23); txtBrand.TabIndex = 8; // // txtModel // txtModel.Location = new Point(151, 127); txtModel.Name = "txtModel"; txtModel.Size = new Size(100, 23); txtModel.TabIndex = 9; // // txtProblemDescription // txtProblemDescription.Location = new Point(151, 188); txtProblemDescription.Multiline = true; txtProblemDescription.Name = "txtProblemDescription"; txtProblemDescription.Size = new Size(200, 103); txtProblemDescription.TabIndex = 10; txtProblemDescription.TextChanged += txtProblemDescription_TextChanged_1; // // NewRepairRequestForm // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(800, 450); Controls.Add(txtProblemDescription); Controls.Add(txtModel); Controls.Add(txtBrand); Controls.Add(cmbDeviceType); Controls.Add(lblCharCount); Controls.Add(label4); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Controls.Add(btnCancel); Controls.Add(btnCreate); Name = "NewRepairRequestForm"; Text = "NewRepairRequestForm"; ResumeLayout(false); PerformLayout(); } #endregion private Button btnCreate; private Button btnCancel; private Label label1; private Label label2; private Label label3; private Label label4; private Label lblCharCount; private ComboBox cmbDeviceType; private TextBox txtBrand; private TextBox txtModel; private TextBox txtProblemDescription; } }