PIbd-33_Lisov_N.A_COP_30/TestForms/Form1.Designer.cs

98 lines
3.3 KiB
C#
Raw Normal View History

2023-09-09 14:11:29 +04:00
namespace TestForms
{
partial class TestFrame
{
/// <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()
{
fillButton = new Button();
clearButton = new Button();
listBox = new CustomComponents.Frame();
frameTextBox1 = new CustomComponents.frameTextBox();
SuspendLayout();
//
// fillButton
//
2023-09-21 17:03:20 +04:00
fillButton.Location = new Point(153, 14);
fillButton.Margin = new Padding(3, 2, 3, 2);
2023-09-09 14:11:29 +04:00
fillButton.Name = "fillButton";
2023-09-21 17:03:20 +04:00
fillButton.Size = new Size(82, 22);
2023-09-09 14:11:29 +04:00
fillButton.TabIndex = 1;
fillButton.Text = "FILL";
fillButton.UseVisualStyleBackColor = true;
fillButton.Click += fillButton_Click;
//
// clearButton
//
2023-09-21 17:03:20 +04:00
clearButton.Location = new Point(153, 56);
clearButton.Margin = new Padding(3, 2, 3, 2);
2023-09-09 14:11:29 +04:00
clearButton.Name = "clearButton";
2023-09-21 17:03:20 +04:00
clearButton.Size = new Size(82, 22);
2023-09-09 14:11:29 +04:00
clearButton.TabIndex = 2;
clearButton.Text = "CLEAR";
clearButton.UseVisualStyleBackColor = true;
clearButton.Click += clearButton_Click;
//
// listBox
//
listBox.Location = new Point(-3, 0);
2023-09-21 17:03:20 +04:00
listBox.Margin = new Padding(3, 2, 3, 2);
2023-09-09 14:11:29 +04:00
listBox.Name = "listBox";
2023-09-21 17:03:20 +04:00
listBox.Size = new Size(150, 120);
2023-09-09 14:11:29 +04:00
listBox.TabIndex = 3;
listBox.Value = "";
//
// frameTextBox1
//
2023-09-21 17:03:20 +04:00
frameTextBox1.Location = new Point(273, 14);
frameTextBox1.Margin = new Padding(3, 2, 3, 2);
2023-09-09 14:11:29 +04:00
frameTextBox1.Name = "frameTextBox1";
2023-09-21 17:03:20 +04:00
frameTextBox1.Size = new Size(255, 68);
2023-09-09 14:11:29 +04:00
frameTextBox1.TabIndex = 4;
frameTextBox1.Value = null;
//
// TestFrame
//
2023-09-21 17:03:20 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
2023-09-09 14:11:29 +04:00
AutoScaleMode = AutoScaleMode.Font;
2023-09-21 17:03:20 +04:00
ClientSize = new Size(700, 338);
2023-09-09 14:11:29 +04:00
Controls.Add(frameTextBox1);
Controls.Add(clearButton);
Controls.Add(fillButton);
Controls.Add(listBox);
2023-09-21 17:03:20 +04:00
Margin = new Padding(3, 2, 3, 2);
2023-09-09 14:11:29 +04:00
Name = "TestFrame";
Text = "Form1";
ResumeLayout(false);
}
#endregion
private Button fillButton;
private Button clearButton;
private CustomComponents.Frame listBox;
private CustomComponents.frameTextBox frameTextBox1;
}
}