119 lines
4.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace SoftwareInstallationView
{
partial class FormSellPackage
{
/// <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()
{
CountLabel = new Label();
PackageСomboBox = new ComboBox();
PackageLabel = new Label();
CountTextBox = new TextBox();
ButtonCancel = new Button();
SaveButton = new Button();
SuspendLayout();
//
// CountLabel
//
CountLabel.AutoSize = true;
CountLabel.Location = new Point(12, 58);
CountLabel.Name = "CountLabel";
CountLabel.Size = new Size(75, 15);
CountLabel.TabIndex = 2;
CountLabel.Text = "Количество:";
//
// PackageСomboBox
//
PackageСomboBox.FormattingEnabled = true;
PackageСomboBox.Location = new Point(98, 20);
PackageСomboBox.Name = "PackageСomboBox";
PackageСomboBox.Size = new Size(184, 23);
PackageСomboBox.TabIndex = 4;
//
// PackageLabel
//
PackageLabel.AutoSize = true;
PackageLabel.Location = new Point(22, 23);
PackageLabel.Name = "PackageLabel";
PackageLabel.Size = new Size(56, 15);
PackageLabel.TabIndex = 3;
PackageLabel.Text = "Изделие:";
//
// CountTextBox
//
CountTextBox.Location = new Point(98, 58);
CountTextBox.Name = "CountTextBox";
CountTextBox.Size = new Size(184, 23);
CountTextBox.TabIndex = 5;
//
// ButtonCancel
//
ButtonCancel.Location = new Point(230, 92);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(97, 29);
ButtonCancel.TabIndex = 7;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// SaveButton
//
SaveButton.Location = new Point(127, 92);
SaveButton.Name = "SaveButton";
SaveButton.Size = new Size(97, 29);
SaveButton.TabIndex = 6;
SaveButton.Text = "Сохранить";
SaveButton.UseVisualStyleBackColor = true;
SaveButton.Click += SaveButton_Click;
//
// FormSellPackage
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(339, 128);
Controls.Add(ButtonCancel);
Controls.Add(SaveButton);
Controls.Add(CountTextBox);
Controls.Add(PackageСomboBox);
Controls.Add(PackageLabel);
Controls.Add(CountLabel);
Name = "FormSellPackage";
Text = "Продать изделие";
Load += FormSellPackage_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label CountLabel;
private ComboBox PackageСomboBox;
private Label PackageLabel;
private TextBox CountTextBox;
private Button ButtonCancel;
private Button SaveButton;
}
}