75 lines
1.9 KiB
C#
75 lines
1.9 KiB
C#
|
namespace ShabComponentsLibrary
|
|||
|
{
|
|||
|
partial class ShabInputComponent
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
IsNullCheckBox = new CheckBox();
|
|||
|
MainTextBox = new TextBox();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// IsNullCheckBox
|
|||
|
//
|
|||
|
IsNullCheckBox.AutoSize = true;
|
|||
|
IsNullCheckBox.Location = new Point(3, 7);
|
|||
|
IsNullCheckBox.Name = "IsNullCheckBox";
|
|||
|
IsNullCheckBox.Size = new Size(15, 14);
|
|||
|
IsNullCheckBox.TabIndex = 0;
|
|||
|
IsNullCheckBox.UseVisualStyleBackColor = true;
|
|||
|
IsNullCheckBox.CheckedChanged += IsNullCheckBox_CheckedChanged;
|
|||
|
//
|
|||
|
// MainTextBox
|
|||
|
//
|
|||
|
MainTextBox.Location = new Point(20, 3);
|
|||
|
MainTextBox.Margin = new Padding(0);
|
|||
|
MainTextBox.MaxLength = 10;
|
|||
|
MainTextBox.Name = "MainTextBox";
|
|||
|
MainTextBox.PlaceholderText = "0";
|
|||
|
MainTextBox.Size = new Size(153, 23);
|
|||
|
MainTextBox.TabIndex = 1;
|
|||
|
MainTextBox.TextChanged += MainTextBox_TextChanged;
|
|||
|
//
|
|||
|
// ShabInputComponent
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
Controls.Add(MainTextBox);
|
|||
|
Controls.Add(IsNullCheckBox);
|
|||
|
Margin = new Padding(0);
|
|||
|
Name = "ShabInputComponent";
|
|||
|
Size = new Size(175, 29);
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private CheckBox IsNullCheckBox;
|
|||
|
private TextBox MainTextBox;
|
|||
|
}
|
|||
|
}
|