SUBD_LAB/SUBD_LABA/View/FormAlbum.Designer.cs

118 lines
2.8 KiB
C#
Raw Permalink Normal View History

2024-05-14 22:32:28 +04:00
namespace View
{
partial class FormAlbum
{
/// <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()
{
textBox1 = new TextBox();
textBox2 = new TextBox();
button1 = new Button();
button2 = new Button();
label1 = new Label();
label2 = new Label();
SuspendLayout();
//
// textBox1
//
textBox1.Location = new Point(192, 26);
textBox1.Name = "textBox1";
textBox1.Size = new Size(216, 27);
textBox1.TabIndex = 0;
//
// textBox2
//
textBox2.Location = new Point(192, 77);
textBox2.Name = "textBox2";
textBox2.Size = new Size(216, 27);
textBox2.TabIndex = 1;
//
// button1
//
button1.Location = new Point(68, 138);
button1.Name = "button1";
button1.Size = new Size(94, 29);
button1.TabIndex = 2;
button1.Text = "Сохранить";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// button2
//
button2.Location = new Point(264, 138);
button2.Name = "button2";
button2.Size = new Size(94, 29);
button2.TabIndex = 3;
button2.Text = "Отмена";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(41, 29);
label1.Name = "label1";
label1.Size = new Size(77, 20);
label1.TabIndex = 4;
label1.Text = "Название";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(41, 80);
label2.Name = "label2";
label2.Size = new Size(79, 20);
label2.TabIndex = 5;
label2.Text = "Описание";
//
// FormAlbum
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(420, 179);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(button2);
Controls.Add(button1);
Controls.Add(textBox2);
Controls.Add(textBox1);
Name = "FormAlbum";
Text = "FormAlbum";
Load += FormAlbum_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBox1;
private TextBox textBox2;
private Button button1;
private Button button2;
private Label label1;
private Label label2;
}
}