158 lines
7.1 KiB
C#
158 lines
7.1 KiB
C#
namespace KMBIM
|
|
{
|
|
partial class FormExtend2Level
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormExtend2Level));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.txt_CurrentLevel = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.txt_Offset = new System.Windows.Forms.TextBox();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.combo_ExtendLevel = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(24, 24);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(71, 12);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "현재 Level :";
|
|
//
|
|
// txt_CurrentLevel
|
|
//
|
|
this.txt_CurrentLevel.Enabled = false;
|
|
this.txt_CurrentLevel.Location = new System.Drawing.Point(101, 21);
|
|
this.txt_CurrentLevel.Name = "txt_CurrentLevel";
|
|
this.txt_CurrentLevel.Size = new System.Drawing.Size(100, 21);
|
|
this.txt_CurrentLevel.TabIndex = 2;
|
|
this.txt_CurrentLevel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 51);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(83, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "연장할 Level :";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(18, 80);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(77, 12);
|
|
this.label3.TabIndex = 3;
|
|
this.label3.Text = "간격 띄우기 :";
|
|
//
|
|
// txt_Offset
|
|
//
|
|
this.txt_Offset.Location = new System.Drawing.Point(101, 77);
|
|
this.txt_Offset.Name = "txt_Offset";
|
|
this.txt_Offset.Size = new System.Drawing.Size(100, 21);
|
|
this.txt_Offset.TabIndex = 4;
|
|
this.txt_Offset.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
|
this.txt_Offset.TextChanged += new System.EventHandler(this.txt_Offset_TextChanged);
|
|
this.txt_Offset.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_Offset_KeyPress);
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.button2.Location = new System.Drawing.Point(117, 109);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(56, 23);
|
|
this.button2.TabIndex = 1;
|
|
this.button2.Text = "취소";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.button1.Location = new System.Drawing.Point(55, 109);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(56, 23);
|
|
this.button1.TabIndex = 0;
|
|
this.button1.Text = "확인";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// combo_ExtendLevel
|
|
//
|
|
this.combo_ExtendLevel.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
|
this.combo_ExtendLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.combo_ExtendLevel.FormattingEnabled = true;
|
|
this.combo_ExtendLevel.Location = new System.Drawing.Point(101, 48);
|
|
this.combo_ExtendLevel.Name = "combo_ExtendLevel";
|
|
this.combo_ExtendLevel.Size = new System.Drawing.Size(100, 22);
|
|
this.combo_ExtendLevel.TabIndex = 3;
|
|
this.combo_ExtendLevel.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.combo_ExtendLevel_DrawItem);
|
|
this.combo_ExtendLevel.SelectedIndexChanged += new System.EventHandler(this.combo_ExtendLevel_SelectedIndexChanged);
|
|
//
|
|
// FormExtend2Level
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(229, 139);
|
|
this.Controls.Add(this.combo_ExtendLevel);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.txt_Offset);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.txt_CurrentLevel);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormExtend2Level";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "레벨연장";
|
|
this.Load += new System.EventHandler(this.FormExtend2Level_Load);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormExtend2Level_KeyDown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox txt_CurrentLevel;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox txt_Offset;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.ComboBox combo_ExtendLevel;
|
|
}
|
|
} |