93 lines
3.1 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
//
fillButton.Location = new Point(175, 18);
fillButton.Name = "fillButton";
fillButton.Size = new Size(94, 29);
fillButton.TabIndex = 1;
fillButton.Text = "FILL";
fillButton.UseVisualStyleBackColor = true;
fillButton.Click += fillButton_Click;
//
// clearButton
//
clearButton.Location = new Point(175, 75);
clearButton.Name = "clearButton";
clearButton.Size = new Size(94, 29);
clearButton.TabIndex = 2;
clearButton.Text = "CLEAR";
clearButton.UseVisualStyleBackColor = true;
clearButton.Click += clearButton_Click;
//
// listBox
//
listBox.Location = new Point(-3, 0);
listBox.Name = "listBox";
listBox.Size = new Size(172, 137);
listBox.TabIndex = 3;
listBox.Value = "";
//
// frameTextBox1
//
frameTextBox1.Location = new Point(312, 18);
frameTextBox1.Name = "frameTextBox1";
frameTextBox1.Size = new Size(291, 91);
frameTextBox1.TabIndex = 4;
frameTextBox1.Value = null;
//
// TestFrame
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(frameTextBox1);
Controls.Add(clearButton);
Controls.Add(fillButton);
Controls.Add(listBox);
Name = "TestFrame";
Text = "Form1";
ResumeLayout(false);
}
#endregion
private Button fillButton;
private Button clearButton;
private CustomComponents.Frame listBox;
private CustomComponents.frameTextBox frameTextBox1;
}
}