238 lines
8.4 KiB
C#
238 lines
8.4 KiB
C#
namespace Forms
|
|
{
|
|
partial class FormOrder
|
|
{
|
|
/// <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();
|
|
comboBoxComponent = new ComboBox();
|
|
textBoxCost = new TextBox();
|
|
textBoxStartDate = new TextBox();
|
|
textBoxEndDate = new TextBox();
|
|
label5 = new Label();
|
|
label4 = new Label();
|
|
label3 = new Label();
|
|
label2 = new Label();
|
|
label1 = new Label();
|
|
dataGridView = new DataGridView();
|
|
comboBoxClient = new ComboBox();
|
|
comboBoxService = new ComboBox();
|
|
label6 = new Label();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonDelete
|
|
//
|
|
buttonDelete.Location = new Point(688, 244);
|
|
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, 215);
|
|
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, 186);
|
|
buttonCreate.Name = "buttonCreate";
|
|
buttonCreate.Size = new Size(75, 23);
|
|
buttonCreate.TabIndex = 26;
|
|
buttonCreate.Text = "create";
|
|
buttonCreate.UseVisualStyleBackColor = true;
|
|
buttonCreate.Click += buttonCreate_Click;
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
comboBoxComponent.FormattingEnabled = true;
|
|
comboBoxComponent.Location = new Point(688, 11);
|
|
comboBoxComponent.Name = "comboBoxComponent";
|
|
comboBoxComponent.Size = new Size(270, 23);
|
|
comboBoxComponent.TabIndex = 25;
|
|
//
|
|
// textBoxCost
|
|
//
|
|
textBoxCost.Location = new Point(688, 157);
|
|
textBoxCost.Name = "textBoxCost";
|
|
textBoxCost.Size = new Size(270, 23);
|
|
textBoxCost.TabIndex = 24;
|
|
//
|
|
// textBoxStartDate
|
|
//
|
|
textBoxStartDate.Location = new Point(688, 99);
|
|
textBoxStartDate.Name = "textBoxStartDate";
|
|
textBoxStartDate.Size = new Size(270, 23);
|
|
textBoxStartDate.TabIndex = 23;
|
|
//
|
|
// textBoxEndDate
|
|
//
|
|
textBoxEndDate.Location = new Point(688, 128);
|
|
textBoxEndDate.Name = "textBoxEndDate";
|
|
textBoxEndDate.Size = new Size(270, 23);
|
|
textBoxEndDate.TabIndex = 21;
|
|
//
|
|
// label5
|
|
//
|
|
label5.AutoSize = true;
|
|
label5.Location = new Point(622, 160);
|
|
label5.Name = "label5";
|
|
label5.Size = new Size(31, 15);
|
|
label5.TabIndex = 20;
|
|
label5.Text = "Cost";
|
|
//
|
|
// label4
|
|
//
|
|
label4.AutoSize = true;
|
|
label4.Location = new Point(622, 131);
|
|
label4.Name = "label4";
|
|
label4.Size = new Size(53, 15);
|
|
label4.TabIndex = 19;
|
|
label4.Text = "End date";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(622, 102);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(57, 15);
|
|
label3.TabIndex = 18;
|
|
label3.Text = "Start date";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(622, 43);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(38, 15);
|
|
label2.TabIndex = 17;
|
|
label2.Text = "Client";
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(622, 14);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(71, 15);
|
|
label1.TabIndex = 16;
|
|
label1.Text = "Component";
|
|
//
|
|
// 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;
|
|
//
|
|
// comboBoxClient
|
|
//
|
|
comboBoxClient.FormattingEnabled = true;
|
|
comboBoxClient.Location = new Point(688, 40);
|
|
comboBoxClient.Name = "comboBoxClient";
|
|
comboBoxClient.Size = new Size(270, 23);
|
|
comboBoxClient.TabIndex = 29;
|
|
//
|
|
// comboBoxService
|
|
//
|
|
comboBoxService.FormattingEnabled = true;
|
|
comboBoxService.Location = new Point(688, 70);
|
|
comboBoxService.Name = "comboBoxService";
|
|
comboBoxService.Size = new Size(270, 23);
|
|
comboBoxService.TabIndex = 31;
|
|
//
|
|
// label6
|
|
//
|
|
label6.AutoSize = true;
|
|
label6.Location = new Point(622, 73);
|
|
label6.Name = "label6";
|
|
label6.Size = new Size(44, 15);
|
|
label6.TabIndex = 30;
|
|
label6.Text = "Service";
|
|
//
|
|
// FormOrder
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(970, 450);
|
|
Controls.Add(comboBoxService);
|
|
Controls.Add(label6);
|
|
Controls.Add(comboBoxClient);
|
|
Controls.Add(buttonDelete);
|
|
Controls.Add(buttonUpdate);
|
|
Controls.Add(buttonCreate);
|
|
Controls.Add(comboBoxComponent);
|
|
Controls.Add(textBoxCost);
|
|
Controls.Add(textBoxStartDate);
|
|
Controls.Add(textBoxEndDate);
|
|
Controls.Add(label5);
|
|
Controls.Add(label4);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(dataGridView);
|
|
Name = "FormOrder";
|
|
Text = "FormOrder";
|
|
Load += FormOrder_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonDelete;
|
|
private Button buttonUpdate;
|
|
private Button buttonCreate;
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCost;
|
|
private TextBox textBoxStartDate;
|
|
private TextBox textBoxEndDate;
|
|
private Label label5;
|
|
private Label label4;
|
|
private Label label3;
|
|
private Label label2;
|
|
private Label label1;
|
|
private DataGridView dataGridView;
|
|
private ComboBox comboBoxClient;
|
|
private ComboBox comboBoxService;
|
|
private Label label6;
|
|
}
|
|
} |