PIbd-33_Lisov_N.A_COP_30/CustomComponents/TextBox.Designer.cs

72 lines
2.2 KiB
C#

namespace CustomComponents
{
partial class frameTextBox
{
/// <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 Component 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()
{
textBox = new TextBox();
ruleCheckBox = new CheckBox();
SuspendLayout();
//
// textBox
//
textBox.Location = new Point(12, 22);
textBox.Name = "textBox";
textBox.Size = new Size(125, 27);
textBox.TabIndex = 0;
textBox.Leave += CheckTextBoxValueType;
//
// ruleCheckBox
//
ruleCheckBox.AutoSize = true;
ruleCheckBox.Location = new Point(157, 24);
ruleCheckBox.Name = "ruleCheckBox";
ruleCheckBox.Size = new Size(66, 24);
ruleCheckBox.TabIndex = 1;
ruleCheckBox.Text = "NULL";
ruleCheckBox.UseVisualStyleBackColor = true;
ruleCheckBox.CheckedChanged += CheckBoxStateChanged;
//
// frameTextBox
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(ruleCheckBox);
Controls.Add(textBox);
Name = "frameTextBox";
Size = new Size(233, 73);
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBox;
private CheckBox ruleCheckBox;
}
}