KOP/TestingForm/FormMain.Designer.cs

63 lines
2.0 KiB
C#
Raw Normal View History

2024-10-04 11:22:00 +04:00
namespace TestingForm
{
partial class FormMain
{
/// <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()
{
2024-10-04 12:20:51 +04:00
components = new System.ComponentModel.Container();
userControlTableDocument1 = new Components.UserControlTableDocument(components);
button1 = new Button();
2024-10-04 11:22:00 +04:00
SuspendLayout();
//
2024-10-04 12:20:51 +04:00
// button1
//
button1.Location = new Point(12, 12);
button1.Name = "button1";
button1.Size = new Size(188, 65);
button1.TabIndex = 0;
button1.Text = "Сохранить первый компонент";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
2024-10-04 11:22:00 +04:00
// FormMain
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
2024-10-04 12:20:51 +04:00
Controls.Add(button1);
2024-10-04 11:22:00 +04:00
Name = "FormMain";
2024-10-04 12:20:51 +04:00
Text = "Testing form";
2024-10-04 11:22:00 +04:00
ResumeLayout(false);
}
#endregion
2024-10-04 12:20:51 +04:00
private Components.UserControlTableDocument userControlTableDocument1;
private Button button1;
2024-10-04 11:22:00 +04:00
}
}