69 lines
2.4 KiB
C#
69 lines
2.4 KiB
C#
|
namespace Laba3
|
|||
|
{
|
|||
|
partial class ProductForm
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
dtpDeliveryDate = new WinFormsLibrary1.DateInputControl();
|
|||
|
comboBoxUserControl1 = new WinFormsLibrary1.ComboBoxUserControl();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dtpDeliveryDate
|
|||
|
//
|
|||
|
dtpDeliveryDate.Location = new Point(13, 65);
|
|||
|
dtpDeliveryDate.Margin = new Padding(4, 5, 4, 5);
|
|||
|
dtpDeliveryDate.Name = "dtpDeliveryDate";
|
|||
|
dtpDeliveryDate.Size = new Size(186, 110);
|
|||
|
dtpDeliveryDate.TabIndex = 0;
|
|||
|
//
|
|||
|
// comboBoxUserControl1
|
|||
|
//
|
|||
|
comboBoxUserControl1.Location = new Point(13, 115);
|
|||
|
comboBoxUserControl1.Margin = new Padding(4, 5, 4, 5);
|
|||
|
comboBoxUserControl1.Name = "comboBoxUserControl1";
|
|||
|
comboBoxUserControl1.SelectedValue = "";
|
|||
|
comboBoxUserControl1.Size = new Size(201, 40);
|
|||
|
comboBoxUserControl1.TabIndex = 1;
|
|||
|
//
|
|||
|
// ProductForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(comboBoxUserControl1);
|
|||
|
Controls.Add(dtpDeliveryDate);
|
|||
|
Name = "ProductForm";
|
|||
|
Text = "ProductForm";
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private WinFormsLibrary1.DateInputControl dtpDeliveryDate;
|
|||
|
private WinFormsLibrary1.ComboBoxUserControl comboBoxUserControl1;
|
|||
|
}
|
|||
|
}
|