171 lines
6.6 KiB
C#
Raw Normal View History

2024-10-22 19:58:21 +04:00
namespace Forms
{
partial class ProviderForm
{
/// <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()
{
controlSelectedComboBoxList = new ControlsLibraryNet60.Selected.ControlSelectedComboBoxList();
textBoxName = new TextBox();
label1 = new Label();
textBoxFurnitureType = new TextBox();
label2 = new Label();
label3 = new Label();
label4 = new Label();
buttonAdd = new Button();
buttonCancel = new Button();
2024-10-23 15:53:54 +04:00
controlInputNullableDate = new ComponentProgramming.Control.DateBoxWithNull();
2024-10-22 19:58:21 +04:00
SuspendLayout();
//
// controlSelectedComboBoxList
//
2024-10-23 15:53:54 +04:00
controlSelectedComboBoxList.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
2024-10-22 19:58:21 +04:00
controlSelectedComboBoxList.Location = new Point(12, 119);
controlSelectedComboBoxList.Margin = new Padding(5, 3, 5, 3);
controlSelectedComboBoxList.Name = "controlSelectedComboBoxList";
controlSelectedComboBoxList.SelectedElement = "";
controlSelectedComboBoxList.Size = new Size(254, 24);
controlSelectedComboBoxList.TabIndex = 1;
2024-10-23 15:53:54 +04:00
controlSelectedComboBoxList.SelectedElementChange += OnInputChange;
2024-10-22 19:58:21 +04:00
//
// textBoxName
//
textBoxName.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
textBoxName.Location = new Point(12, 27);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(254, 23);
textBoxName.TabIndex = 2;
2024-10-23 15:53:54 +04:00
textBoxName.TextChanged += OnInputChange;
2024-10-22 19:58:21 +04:00
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 9);
label1.Name = "label1";
label1.Size = new Size(42, 15);
label1.TabIndex = 3;
label1.Text = "Name:";
//
// textBoxFurnitureType
//
textBoxFurnitureType.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
textBoxFurnitureType.Location = new Point(12, 73);
textBoxFurnitureType.Name = "textBoxFurnitureType";
textBoxFurnitureType.Size = new Size(254, 23);
textBoxFurnitureType.TabIndex = 4;
2024-10-23 15:53:54 +04:00
textBoxFurnitureType.TextChanged += OnInputChange;
2024-10-22 19:58:21 +04:00
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 55);
label2.Name = "label2";
label2.Size = new Size(84, 15);
label2.TabIndex = 5;
label2.Text = "Furniture type:";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 101);
label3.Name = "label3";
label3.Size = new Size(104, 15);
label3.TabIndex = 6;
label3.Text = "Organisation type:";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(12, 146);
label4.Name = "label4";
label4.Size = new Size(75, 15);
label4.TabIndex = 7;
label4.Text = "Last delivery:";
//
// buttonAdd
//
buttonAdd.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
2024-10-23 15:53:54 +04:00
buttonAdd.Location = new Point(12, 196);
2024-10-22 19:58:21 +04:00
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(94, 36);
buttonAdd.TabIndex = 8;
buttonAdd.Text = "Add";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += buttonAdd_Click;
//
// buttonCancel
//
buttonCancel.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
2024-10-23 15:53:54 +04:00
buttonCancel.Location = new Point(173, 196);
2024-10-22 19:58:21 +04:00
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 36);
buttonCancel.TabIndex = 9;
buttonCancel.Text = "Cancel";
buttonCancel.UseVisualStyleBackColor = true;
2024-10-23 15:53:54 +04:00
buttonCancel.Click += buttonCancel_Click;
//
// controlInputNullableDate
//
controlInputNullableDate.Location = new Point(12, 165);
controlInputNullableDate.Name = "controlInputNullableDate";
controlInputNullableDate.Size = new Size(255, 30);
controlInputNullableDate.TabIndex = 10;
2024-10-22 19:58:21 +04:00
//
// ProviderForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(279, 241);
2024-10-23 15:53:54 +04:00
Controls.Add(controlInputNullableDate);
2024-10-22 19:58:21 +04:00
Controls.Add(buttonCancel);
Controls.Add(buttonAdd);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(textBoxFurnitureType);
Controls.Add(label1);
Controls.Add(textBoxName);
Controls.Add(controlSelectedComboBoxList);
Name = "ProviderForm";
Text = "Create Provider";
2024-10-23 15:53:54 +04:00
FormClosing += ProviderForm_FormClosing;
2024-10-22 19:58:21 +04:00
ResumeLayout(false);
PerformLayout();
}
#endregion
private ControlsLibraryNet60.Selected.ControlSelectedComboBoxList controlSelectedComboBoxList;
private TextBox textBoxName;
private Label label1;
private TextBox textBoxFurnitureType;
private Label label2;
private Label label3;
private Label label4;
private Button buttonAdd;
private Button buttonCancel;
2024-10-23 15:53:54 +04:00
private ComponentProgramming.Control.DateBoxWithNull controlInputNullableDate;
2024-10-22 19:58:21 +04:00
}
}