121 lines
4.2 KiB
C#
121 lines
4.2 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();
|
|
cmbManufacturer = new WinFormsLibrary1.ComboBoxUserControl();
|
|
txtName = new Library14Petrushin.TextBoxRange();
|
|
pbImage = new PictureBox();
|
|
button1 = new Button();
|
|
button2 = new Button();
|
|
((System.ComponentModel.ISupportInitialize)pbImage).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dtpDeliveryDate
|
|
//
|
|
dtpDeliveryDate.DateFormat = null;
|
|
dtpDeliveryDate.Location = new Point(13, 137);
|
|
dtpDeliveryDate.Margin = new Padding(4, 5, 4, 5);
|
|
dtpDeliveryDate.Name = "dtpDeliveryDate";
|
|
dtpDeliveryDate.Size = new Size(186, 110);
|
|
dtpDeliveryDate.TabIndex = 0;
|
|
//
|
|
// cmbManufacturer
|
|
//
|
|
cmbManufacturer.Location = new Point(12, 218);
|
|
cmbManufacturer.Margin = new Padding(4, 5, 4, 5);
|
|
cmbManufacturer.Name = "cmbManufacturer";
|
|
cmbManufacturer.SelectedValue = "";
|
|
cmbManufacturer.Size = new Size(201, 40);
|
|
cmbManufacturer.TabIndex = 1;
|
|
//
|
|
// txtName
|
|
//
|
|
txtName.Location = new Point(12, 12);
|
|
txtName.MaxLength = null;
|
|
txtName.MinLength = null;
|
|
txtName.Name = "txtName";
|
|
txtName.Size = new Size(315, 108);
|
|
txtName.TabIndex = 2;
|
|
//
|
|
// pbImage
|
|
//
|
|
pbImage.Location = new Point(320, 32);
|
|
pbImage.Name = "pbImage";
|
|
pbImage.Size = new Size(451, 344);
|
|
pbImage.TabIndex = 3;
|
|
pbImage.TabStop = false;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(320, 399);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(110, 29);
|
|
button1.TabIndex = 4;
|
|
button1.Text = "Choose img";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += btnBrowse_Click;
|
|
//
|
|
// button2
|
|
//
|
|
button2.Location = new Point(12, 326);
|
|
button2.Name = "button2";
|
|
button2.Size = new Size(94, 29);
|
|
button2.TabIndex = 5;
|
|
button2.Text = "Save";
|
|
button2.UseVisualStyleBackColor = true;
|
|
button2.Click += btnSave_Click;
|
|
//
|
|
// ProductForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(button2);
|
|
Controls.Add(button1);
|
|
Controls.Add(pbImage);
|
|
Controls.Add(txtName);
|
|
Controls.Add(cmbManufacturer);
|
|
Controls.Add(dtpDeliveryDate);
|
|
Name = "ProductForm";
|
|
Text = "ProductForm";
|
|
((System.ComponentModel.ISupportInitialize)pbImage).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private WinFormsLibrary1.DateInputControl dtpDeliveryDate;
|
|
private WinFormsLibrary1.ComboBoxUserControl cmbManufacturer;
|
|
private Library14Petrushin.TextBoxRange txtName;
|
|
private PictureBox pbImage;
|
|
private Button button1;
|
|
private Button button2;
|
|
}
|
|
} |