143 lines
5.1 KiB
C#
143 lines
5.1 KiB
C#
|
namespace Publication.Forms
|
|||
|
{
|
|||
|
partial class FormPublishingHouse
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
labelTitle = new Label();
|
|||
|
labelAddress = new Label();
|
|||
|
labelWorkPhone = new Label();
|
|||
|
textBoxTitle = new TextBox();
|
|||
|
textBoxAddress = new TextBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonBreak = new Button();
|
|||
|
textBoxWorkPhone = new TextBox();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelTitle
|
|||
|
//
|
|||
|
labelTitle.AutoSize = true;
|
|||
|
labelTitle.Location = new Point(24, 36);
|
|||
|
labelTitle.Name = "labelTitle";
|
|||
|
labelTitle.Size = new Size(77, 20);
|
|||
|
labelTitle.TabIndex = 0;
|
|||
|
labelTitle.Text = "Название";
|
|||
|
//
|
|||
|
// labelAddress
|
|||
|
//
|
|||
|
labelAddress.AutoSize = true;
|
|||
|
labelAddress.Location = new Point(24, 91);
|
|||
|
labelAddress.Name = "labelAddress";
|
|||
|
labelAddress.Size = new Size(51, 20);
|
|||
|
labelAddress.TabIndex = 1;
|
|||
|
labelAddress.Text = "Адрес";
|
|||
|
//
|
|||
|
// labelWorkPhone
|
|||
|
//
|
|||
|
labelWorkPhone.AutoSize = true;
|
|||
|
labelWorkPhone.Location = new Point(24, 146);
|
|||
|
labelWorkPhone.Name = "labelWorkPhone";
|
|||
|
labelWorkPhone.Size = new Size(131, 20);
|
|||
|
labelWorkPhone.TabIndex = 2;
|
|||
|
labelWorkPhone.Text = "Рабочий телефон";
|
|||
|
//
|
|||
|
// textBoxTitle
|
|||
|
//
|
|||
|
textBoxTitle.Location = new Point(184, 36);
|
|||
|
textBoxTitle.Name = "textBoxTitle";
|
|||
|
textBoxTitle.Size = new Size(125, 27);
|
|||
|
textBoxTitle.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBoxAddress
|
|||
|
//
|
|||
|
textBoxAddress.Location = new Point(184, 91);
|
|||
|
textBoxAddress.Name = "textBoxAddress";
|
|||
|
textBoxAddress.Size = new Size(125, 27);
|
|||
|
textBoxAddress.TabIndex = 4;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|||
|
buttonSave.Location = new Point(24, 232);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(105, 29);
|
|||
|
buttonSave.TabIndex = 6;
|
|||
|
buttonSave.Text = "Сохранение";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonBreak
|
|||
|
//
|
|||
|
buttonBreak.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonBreak.Location = new Point(215, 232);
|
|||
|
buttonBreak.Name = "buttonBreak";
|
|||
|
buttonBreak.Size = new Size(94, 29);
|
|||
|
buttonBreak.TabIndex = 7;
|
|||
|
buttonBreak.Text = "Отмена";
|
|||
|
buttonBreak.UseVisualStyleBackColor = true;
|
|||
|
buttonBreak.Click += buttonBreak_Click;
|
|||
|
//
|
|||
|
// textBoxWorkPhone
|
|||
|
//
|
|||
|
textBoxWorkPhone.Location = new Point(184, 146);
|
|||
|
textBoxWorkPhone.Name = "textBoxWorkPhone";
|
|||
|
textBoxWorkPhone.Size = new Size(125, 27);
|
|||
|
textBoxWorkPhone.TabIndex = 8;
|
|||
|
//
|
|||
|
// FormPublishingHouse
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(339, 290);
|
|||
|
Controls.Add(textBoxWorkPhone);
|
|||
|
Controls.Add(buttonBreak);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxAddress);
|
|||
|
Controls.Add(textBoxTitle);
|
|||
|
Controls.Add(labelWorkPhone);
|
|||
|
Controls.Add(labelAddress);
|
|||
|
Controls.Add(labelTitle);
|
|||
|
Name = "FormPublishingHouse";
|
|||
|
StartPosition = FormStartPosition.CenterScreen;
|
|||
|
Text = "Типография";
|
|||
|
Load += FormPublishingHouse_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelTitle;
|
|||
|
private Label labelAddress;
|
|||
|
private Label labelWorkPhone;
|
|||
|
private TextBox textBoxTitle;
|
|||
|
private TextBox textBoxAddress;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonBreak;
|
|||
|
private TextBox textBoxWorkPhone;
|
|||
|
}
|
|||
|
}
|