114 lines
4.4 KiB
C#
114 lines
4.4 KiB
C#
namespace KMBIM.Revit.Tools.Cmd.Stretch
|
|
{
|
|
partial class Form_Stretch
|
|
{
|
|
/// <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.txt_Length = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// txt_Length
|
|
//
|
|
this.txt_Length.Location = new System.Drawing.Point(90, 12);
|
|
this.txt_Length.Name = "txt_Length";
|
|
this.txt_Length.Size = new System.Drawing.Size(70, 21);
|
|
this.txt_Length.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(77, 12);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "변경된 길이 :";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(166, 21);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(27, 12);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "mm";
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.button2.Location = new System.Drawing.Point(104, 42);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(60, 23);
|
|
this.button2.TabIndex = 5;
|
|
this.button2.Text = "취소";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.button1.Location = new System.Drawing.Point(38, 42);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(60, 23);
|
|
this.button1.TabIndex = 4;
|
|
this.button1.Text = "확인";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// Form_Stretch
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(202, 74);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.txt_Length);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "Form_Stretch";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
|
this.Text = "스트레치";
|
|
this.Load += new System.EventHandler(this.Form_Stretch_Load);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form_Stretch_KeyDown);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox txt_Length;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
} |