83 lines
3.0 KiB
C#
83 lines
3.0 KiB
C#
|
namespace Switch_Toolbox.Library.Forms.Custom
|
|||
|
{
|
|||
|
partial class STNumericBox
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|||
|
this.arrowRight = new System.Windows.Forms.Button();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// textBox1
|
|||
|
//
|
|||
|
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.textBox1.Location = new System.Drawing.Point(38, 21);
|
|||
|
this.textBox1.Name = "textBox1";
|
|||
|
this.textBox1.Size = new System.Drawing.Size(151, 20);
|
|||
|
this.textBox1.TabIndex = 0;
|
|||
|
//
|
|||
|
// arrowRight
|
|||
|
//
|
|||
|
this.arrowRight.Location = new System.Drawing.Point(186, 21);
|
|||
|
this.arrowRight.Name = "arrowRight";
|
|||
|
this.arrowRight.Size = new System.Drawing.Size(24, 20);
|
|||
|
this.arrowRight.TabIndex = 1;
|
|||
|
this.arrowRight.Text = ">";
|
|||
|
this.arrowRight.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.Location = new System.Drawing.Point(17, 21);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(24, 20);
|
|||
|
this.button1.TabIndex = 2;
|
|||
|
this.button1.Text = "<";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// STNumericBox
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Controls.Add(this.arrowRight);
|
|||
|
this.Controls.Add(this.textBox1);
|
|||
|
this.Name = "STNumericBox";
|
|||
|
this.Size = new System.Drawing.Size(229, 74);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TextBox textBox1;
|
|||
|
private System.Windows.Forms.Button arrowRight;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
}
|
|||
|
}
|