|
|
|
|
|
|
|
|
|
namespace NumericUpDownControl
|
|
|
|
|
{
|
|
|
|
|
partial class Form1
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 필수 디자이너 변수입니다.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 사용 중인 모든 리소스를 정리합니다.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing && (components != null))
|
|
|
|
|
{
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Windows Form 디자이너에서 생성한 코드
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 디자이너 지원에 필요한 메서드입니다.
|
|
|
|
|
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.numericUpDown = new System.Windows.Forms.NumericUpDown();
|
|
|
|
|
this.label = new System.Windows.Forms.Label();
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// numericUpDown
|
|
|
|
|
//
|
|
|
|
|
this.numericUpDown.Location = new System.Drawing.Point(42, 55);
|
|
|
|
|
this.numericUpDown.Name = "numericUpDown";
|
|
|
|
|
this.numericUpDown.Size = new System.Drawing.Size(120, 21);
|
|
|
|
|
this.numericUpDown.TabIndex = 0;
|
|
|
|
|
this.numericUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
|
|
|
this.numericUpDown.ValueChanged += new System.EventHandler(this.numericUpDown_ValueChanged);
|
|
|
|
|
//
|
|
|
|
|
// label
|
|
|
|
|
//
|
|
|
|
|
this.label.AutoSize = true;
|
|
|
|
|
this.label.Location = new System.Drawing.Point(80, 114);
|
|
|
|
|
this.label.Name = "label";
|
|
|
|
|
this.label.Size = new System.Drawing.Size(38, 12);
|
|
|
|
|
this.label.TabIndex = 1;
|
|
|
|
|
this.label.Text = "label1";
|
|
|
|
|
//
|
|
|
|
|
// Form1
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(215, 195);
|
|
|
|
|
this.Controls.Add(this.label);
|
|
|
|
|
this.Controls.Add(this.numericUpDown);
|
|
|
|
|
this.Name = "Form1";
|
|
|
|
|
this.Text = "Form1";
|
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.NumericUpDown numericUpDown;
|
|
|
|
|
private System.Windows.Forms.Label label;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|