Client/Desktop/KMBIM3.0/23.11.03/Cmd/PartSpacing/MainForm.Designer.cs

176 lines
7.6 KiB
C#

namespace KMBIM
{
partial class MainForm
{
/// <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(MainForm));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.txt_Distance = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chk_reducer = new System.Windows.Forms.CheckBox();
this.chk_cap = new System.Windows.Forms.CheckBox();
this.cancel = new System.Windows.Forms.Button();
this.ok = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txt_Distance);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(167, 64);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "거리";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(133, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(27, 12);
this.label2.TabIndex = 2;
this.label2.Text = "mm";
//
// txt_Distance
//
this.txt_Distance.Location = new System.Drawing.Point(64, 24);
this.txt_Distance.Name = "txt_Distance";
this.txt_Distance.Size = new System.Drawing.Size(62, 21);
this.txt_Distance.TabIndex = 1;
this.txt_Distance.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.txt_Distance.TextChanged += new System.EventHandler(this.txt_Distance_TextChanged);
this.txt_Distance.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_Distance_KeyPress);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 0;
this.label1.Text = "거리 : ";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.chk_reducer);
this.groupBox2.Controls.Add(this.chk_cap);
this.groupBox2.Location = new System.Drawing.Point(12, 82);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(167, 72);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "부품";
//
// chk_reducer
//
this.chk_reducer.AutoSize = true;
this.chk_reducer.Location = new System.Drawing.Point(19, 42);
this.chk_reducer.Name = "chk_reducer";
this.chk_reducer.Size = new System.Drawing.Size(60, 16);
this.chk_reducer.TabIndex = 1;
this.chk_reducer.Text = "레듀셔";
this.chk_reducer.UseVisualStyleBackColor = true;
this.chk_reducer.CheckedChanged += new System.EventHandler(this.chk_reducer_CheckedChanged);
//
// chk_cap
//
this.chk_cap.AutoSize = true;
this.chk_cap.Location = new System.Drawing.Point(19, 20);
this.chk_cap.Name = "chk_cap";
this.chk_cap.Size = new System.Drawing.Size(36, 16);
this.chk_cap.TabIndex = 0;
this.chk_cap.Text = "캡";
this.chk_cap.UseVisualStyleBackColor = true;
this.chk_cap.CheckedChanged += new System.EventHandler(this.chk_cap_CheckedChanged);
//
// cancel
//
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancel.Location = new System.Drawing.Point(100, 167);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(70, 23);
this.cancel.TabIndex = 3;
this.cancel.Text = "취소";
this.cancel.UseVisualStyleBackColor = true;
//
// ok
//
this.ok.DialogResult = System.Windows.Forms.DialogResult.OK;
this.ok.Location = new System.Drawing.Point(25, 167);
this.ok.Name = "ok";
this.ok.Size = new System.Drawing.Size(69, 23);
this.ok.TabIndex = 2;
this.ok.Text = "확인";
this.ok.UseVisualStyleBackColor = true;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(192, 202);
this.Controls.Add(this.cancel);
this.Controls.Add(this.ok);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "부품 간격 조정";
this.Load += new System.EventHandler(this.MainForm_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txt_Distance;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox chk_reducer;
private System.Windows.Forms.CheckBox chk_cap;
private System.Windows.Forms.Button cancel;
private System.Windows.Forms.Button ok;
private System.Windows.Forms.Label label2;
}
}