namespace KMBIM.Revit.Tools.Cmd.SyncPipe { partial class SelectLocation { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectLocation)); this.rb_Up = new System.Windows.Forms.RadioButton(); this.rb_middle = new System.Windows.Forms.RadioButton(); this.rb_down = new System.Windows.Forms.RadioButton(); this.btn_Confirm = new System.Windows.Forms.Button(); this.pb_ExplainPic = new System.Windows.Forms.PictureBox(); this.btn_Cancel = new System.Windows.Forms.Button(); this.cb_Insulation = new System.Windows.Forms.CheckBox(); this.gb_Seletion = new System.Windows.Forms.GroupBox(); ((System.ComponentModel.ISupportInitialize)(this.pb_ExplainPic)).BeginInit(); this.gb_Seletion.SuspendLayout(); this.SuspendLayout(); // // rb_Up // this.rb_Up.AutoSize = true; this.rb_Up.Location = new System.Drawing.Point(208, 39); this.rb_Up.Name = "rb_Up"; this.rb_Up.Size = new System.Drawing.Size(45, 16); this.rb_Up.TabIndex = 0; this.rb_Up.TabStop = true; this.rb_Up.Text = "Top"; this.rb_Up.UseVisualStyleBackColor = true; this.rb_Up.CheckedChanged += new System.EventHandler(this.rb_Up_CheckedChanged); // // rb_middle // this.rb_middle.AutoSize = true; this.rb_middle.Location = new System.Drawing.Point(208, 80); this.rb_middle.Name = "rb_middle"; this.rb_middle.Size = new System.Drawing.Size(60, 16); this.rb_middle.TabIndex = 1; this.rb_middle.TabStop = true; this.rb_middle.Text = "Center"; this.rb_middle.UseVisualStyleBackColor = true; this.rb_middle.CheckedChanged += new System.EventHandler(this.rb_Middle_CheckedChanged); // // rb_down // this.rb_down.AutoSize = true; this.rb_down.Location = new System.Drawing.Point(208, 119); this.rb_down.Name = "rb_down"; this.rb_down.Size = new System.Drawing.Size(61, 16); this.rb_down.TabIndex = 2; this.rb_down.TabStop = true; this.rb_down.Text = "bottom"; this.rb_down.UseVisualStyleBackColor = true; this.rb_down.CheckedChanged += new System.EventHandler(this.rb_down_CheckedChanged); // // btn_Confirm // this.btn_Confirm.Location = new System.Drawing.Point(7, 215); this.btn_Confirm.Name = "btn_Confirm"; this.btn_Confirm.Size = new System.Drawing.Size(158, 27); this.btn_Confirm.TabIndex = 3; this.btn_Confirm.Text = "확인"; this.btn_Confirm.UseVisualStyleBackColor = true; this.btn_Confirm.Click += new System.EventHandler(this.btn_Confirm_Click); // // pb_ExplainPic // this.pb_ExplainPic.Image = global::KMBIM.Revit.Tools.Properties.Resources.PipeCritetraSelect1; this.pb_ExplainPic.Location = new System.Drawing.Point(6, 20); this.pb_ExplainPic.Name = "pb_ExplainPic"; this.pb_ExplainPic.Size = new System.Drawing.Size(183, 171); this.pb_ExplainPic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pb_ExplainPic.TabIndex = 4; this.pb_ExplainPic.TabStop = false; // // btn_Cancel // this.btn_Cancel.Location = new System.Drawing.Point(171, 215); this.btn_Cancel.Name = "btn_Cancel"; this.btn_Cancel.Size = new System.Drawing.Size(150, 27); this.btn_Cancel.TabIndex = 5; this.btn_Cancel.Text = "취소"; this.btn_Cancel.UseVisualStyleBackColor = true; this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click); // // cb_Insulation // this.cb_Insulation.AutoSize = true; this.cb_Insulation.Location = new System.Drawing.Point(208, 162); this.cb_Insulation.Name = "cb_Insulation"; this.cb_Insulation.Size = new System.Drawing.Size(88, 16); this.cb_Insulation.TabIndex = 6; this.cb_Insulation.Text = "단열재 고려"; this.cb_Insulation.UseVisualStyleBackColor = true; this.cb_Insulation.CheckedChanged += new System.EventHandler(this.cb_Insulation_CheckedChanged); // // gb_Seletion // this.gb_Seletion.Controls.Add(this.cb_Insulation); this.gb_Seletion.Controls.Add(this.pb_ExplainPic); this.gb_Seletion.Controls.Add(this.rb_down); this.gb_Seletion.Controls.Add(this.rb_middle); this.gb_Seletion.Controls.Add(this.rb_Up); this.gb_Seletion.Location = new System.Drawing.Point(7, 3); this.gb_Seletion.Name = "gb_Seletion"; this.gb_Seletion.Size = new System.Drawing.Size(314, 206); this.gb_Seletion.TabIndex = 7; this.gb_Seletion.TabStop = false; this.gb_Seletion.Enter += new System.EventHandler(this.gb_Seletion_Enter); // // SelectLocation // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(329, 254); this.Controls.Add(this.gb_Seletion); this.Controls.Add(this.btn_Cancel); this.Controls.Add(this.btn_Confirm); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "SelectLocation"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "기준점 선택"; this.Load += new System.EventHandler(this.SelectLocation_Load); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectLocation_KeyDown); ((System.ComponentModel.ISupportInitialize)(this.pb_ExplainPic)).EndInit(); this.gb_Seletion.ResumeLayout(false); this.gb_Seletion.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.RadioButton rb_Up; private System.Windows.Forms.RadioButton rb_middle; private System.Windows.Forms.RadioButton rb_down; private System.Windows.Forms.Button btn_Confirm; private System.Windows.Forms.PictureBox pb_ExplainPic; private System.Windows.Forms.Button btn_Cancel; private System.Windows.Forms.CheckBox cb_Insulation; private System.Windows.Forms.GroupBox gb_Seletion; } }