....
This commit is contained in:
133
SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs
generated
Normal file
133
SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs
generated
Normal file
@@ -0,0 +1,133 @@
|
||||
|
||||
namespace FPJ0000.OtConfirm
|
||||
{
|
||||
partial class fOTConfirmValue
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
this.radAll = new System.Windows.Forms.RadioButton();
|
||||
this.radInput = new System.Windows.Forms.RadioButton();
|
||||
this.tbRemark = new System.Windows.Forms.TextBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.nudValue = new System.Windows.Forms.NumericUpDown();
|
||||
this.btOK = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudValue)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// radAll
|
||||
//
|
||||
this.radAll.AutoSize = true;
|
||||
this.radAll.Checked = true;
|
||||
this.radAll.Font = new System.Drawing.Font("굴림", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.radAll.Location = new System.Drawing.Point(21, 21);
|
||||
this.radAll.Name = "radAll";
|
||||
this.radAll.Size = new System.Drawing.Size(164, 22);
|
||||
this.radAll.TabIndex = 0;
|
||||
this.radAll.TabStop = true;
|
||||
this.radAll.Text = "입력값 전체 승인";
|
||||
this.radAll.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// radInput
|
||||
//
|
||||
this.radInput.AutoSize = true;
|
||||
this.radInput.Font = new System.Drawing.Font("굴림", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.radInput.Location = new System.Drawing.Point(21, 58);
|
||||
this.radInput.Name = "radInput";
|
||||
this.radInput.Size = new System.Drawing.Size(128, 22);
|
||||
this.radInput.TabIndex = 0;
|
||||
this.radInput.Text = "승인 값 입력";
|
||||
this.radInput.UseVisualStyleBackColor = true;
|
||||
this.radInput.CheckedChanged += new System.EventHandler(this.radInput_CheckedChanged);
|
||||
//
|
||||
// tbRemark
|
||||
//
|
||||
this.tbRemark.Font = new System.Drawing.Font("굴림", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.tbRemark.Location = new System.Drawing.Point(22, 96);
|
||||
this.tbRemark.Name = "tbRemark";
|
||||
this.tbRemark.Size = new System.Drawing.Size(498, 27);
|
||||
this.tbRemark.TabIndex = 1;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("굴림", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.label1.Location = new System.Drawing.Point(474, 72);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(44, 18);
|
||||
this.label1.TabIndex = 2;
|
||||
this.label1.Text = "비고";
|
||||
//
|
||||
// nudValue
|
||||
//
|
||||
this.nudValue.Enabled = false;
|
||||
this.nudValue.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.nudValue.Location = new System.Drawing.Point(155, 54);
|
||||
this.nudValue.Name = "nudValue";
|
||||
this.nudValue.Size = new System.Drawing.Size(140, 30);
|
||||
this.nudValue.TabIndex = 3;
|
||||
this.nudValue.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// btOK
|
||||
//
|
||||
this.btOK.Font = new System.Drawing.Font("굴림", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
||||
this.btOK.Location = new System.Drawing.Point(21, 139);
|
||||
this.btOK.Name = "btOK";
|
||||
this.btOK.Size = new System.Drawing.Size(499, 49);
|
||||
this.btOK.TabIndex = 4;
|
||||
this.btOK.Text = "확인";
|
||||
this.btOK.UseVisualStyleBackColor = true;
|
||||
this.btOK.Click += new System.EventHandler(this.btOK_Click);
|
||||
//
|
||||
// fOTConfirmValue
|
||||
//
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.ClientSize = new System.Drawing.Size(540, 201);
|
||||
this.Controls.Add(this.btOK);
|
||||
this.Controls.Add(this.nudValue);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.tbRemark);
|
||||
this.Controls.Add(this.radInput);
|
||||
this.Controls.Add(this.radAll);
|
||||
this.Name = "fOTConfirmValue";
|
||||
this.Text = "fOTConfirmValue";
|
||||
this.Load += new System.EventHandler(this.fOTConfirmValue_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.nudValue)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.RadioButton radAll;
|
||||
private System.Windows.Forms.RadioButton radInput;
|
||||
private System.Windows.Forms.TextBox tbRemark;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.NumericUpDown nudValue;
|
||||
private System.Windows.Forms.Button btOK;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user