2024-05-06 22:17:29 +04:00

215 lines
7.7 KiB
C#

namespace Forms
{
partial class FormDevice
{
/// <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()
{
buttonDelete = new Button();
buttonUpdate = new Button();
buttonCreate = new Button();
comboBoxClientId = new ComboBox();
textBoxTypeDevice = new TextBox();
textBoxModel = new TextBox();
label4 = new Label();
label3 = new Label();
label2 = new Label();
label1 = new Label();
dataGridView = new DataGridView();
comboBoxOrderId = new ComboBox();
textBoxSerialNumber = new TextBox();
label5 = new Label();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// buttonDelete
//
buttonDelete.Location = new Point(688, 269);
buttonDelete.Name = "buttonDelete";
buttonDelete.Size = new Size(75, 23);
buttonDelete.TabIndex = 28;
buttonDelete.Text = "delete";
buttonDelete.UseVisualStyleBackColor = true;
buttonDelete.Click += buttonDelete_Click;
//
// buttonUpdate
//
buttonUpdate.Location = new Point(688, 240);
buttonUpdate.Name = "buttonUpdate";
buttonUpdate.Size = new Size(75, 23);
buttonUpdate.TabIndex = 27;
buttonUpdate.Text = "update";
buttonUpdate.UseVisualStyleBackColor = true;
buttonUpdate.Click += buttonUpdate_Click;
//
// buttonCreate
//
buttonCreate.Location = new Point(688, 211);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(75, 23);
buttonCreate.TabIndex = 26;
buttonCreate.Text = "create";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += buttonCreate_Click;
//
// comboBoxClientId
//
comboBoxClientId.FormattingEnabled = true;
comboBoxClientId.Location = new Point(688, 127);
comboBoxClientId.Name = "comboBoxClientId";
comboBoxClientId.Size = new Size(100, 23);
comboBoxClientId.TabIndex = 25;
//
// textBoxTypeDevice
//
textBoxTypeDevice.Location = new Point(688, 36);
textBoxTypeDevice.Name = "textBoxTypeDevice";
textBoxTypeDevice.Size = new Size(100, 23);
textBoxTypeDevice.TabIndex = 23;
//
// textBoxModel
//
textBoxModel.Location = new Point(688, 65);
textBoxModel.Name = "textBoxModel";
textBoxModel.Size = new Size(100, 23);
textBoxModel.TabIndex = 21;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(622, 68);
label4.Name = "label4";
label4.Size = new Size(41, 15);
label4.TabIndex = 19;
label4.Text = "Model";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(622, 39);
label3.Name = "label3";
label3.Size = new Size(66, 15);
label3.TabIndex = 18;
label3.Text = "TypeDevice";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(622, 159);
label2.Name = "label2";
label2.Size = new Size(47, 15);
label2.TabIndex = 17;
label2.Text = "OrderId";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(622, 130);
label1.Name = "label1";
label1.Size = new Size(48, 15);
label1.TabIndex = 16;
label1.Text = "ClientId";
//
// dataGridView
//
dataGridView.AllowUserToAddRows = false;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Location = new Point(13, 14);
dataGridView.Name = "dataGridView";
dataGridView.RowTemplate.Height = 25;
dataGridView.Size = new Size(603, 426);
dataGridView.TabIndex = 15;
dataGridView.CellClick += dataGridView_CellClick;
//
// comboBoxOrderId
//
comboBoxOrderId.FormattingEnabled = true;
comboBoxOrderId.Location = new Point(688, 156);
comboBoxOrderId.Name = "comboBoxOrderId";
comboBoxOrderId.Size = new Size(100, 23);
comboBoxOrderId.TabIndex = 29;
//
// textBoxSerialNumber
//
textBoxSerialNumber.Location = new Point(688, 94);
textBoxSerialNumber.Name = "textBoxSerialNumber";
textBoxSerialNumber.Size = new Size(100, 23);
textBoxSerialNumber.TabIndex = 31;
//
// label5
//
label5.AutoSize = true;
label5.Location = new Point(622, 97);
label5.Name = "label5";
label5.Size = new Size(62, 15);
label5.TabIndex = 30;
label5.Text = "SerialNum";
//
// FormDevice
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(textBoxSerialNumber);
Controls.Add(label5);
Controls.Add(comboBoxOrderId);
Controls.Add(buttonDelete);
Controls.Add(buttonUpdate);
Controls.Add(buttonCreate);
Controls.Add(comboBoxClientId);
Controls.Add(textBoxTypeDevice);
Controls.Add(textBoxModel);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(dataGridView);
Name = "FormDevice";
Text = "FormDevice";
Load += FormDevice_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonDelete;
private Button buttonUpdate;
private Button buttonCreate;
private ComboBox comboBoxClientId;
private TextBox textBoxTypeDevice;
private TextBox textBoxModel;
private Label label4;
private Label label3;
private Label label2;
private Label label1;
private DataGridView dataGridView;
private ComboBox comboBoxOrderId;
private TextBox textBoxSerialNumber;
private Label label5;
}
}