Client/Desktop/KMBIM3.0/KMBIM3.0_소스/Cmd/Insulation_bak/InsulationSettings.Designer.cs

450 lines
25 KiB
C#

namespace KMBIM.Revit.Tools.Cmd.Insulation
{
partial class InsulationSettings
{
/// <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.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InsulationSettings));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.btnTickness = new System.Windows.Forms.DataGridViewButtonColumn();
this.btn_Go = new System.Windows.Forms.Button();
this.cbCategory = new System.Windows.Forms.ComboBox();
this.btn_Import = new System.Windows.Forms.Button();
this.btn_Export = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.btn_Cancel = new System.Windows.Forms.Button();
this.btnCategory = new System.Windows.Forms.Button();
this.btnCategoryDel = new System.Windows.Forms.Button();
this.ckKeepInsulation = new System.Windows.Forms.CheckBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.textBox_Thickness = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.dataGridView2 = new System.Windows.Forms.DataGridView();
this.ckPipe = new System.Windows.Forms.CheckBox();
this.ckDuct = new System.Windows.Forms.CheckBox();
this.strTypeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DuctdataStorageBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.strTypeDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.strLaggingTypeDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.DuctinsulationTypeBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.dblLaggingThicknessDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PipeinsulationTypeBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.PipedataStorageBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.DuctdataStorageBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.DuctinsulationTypeBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.PipeinsulationTypeBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.PipedataStorageBindingSource)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.dataGridView1);
this.groupBox1.Location = new System.Drawing.Point(6, 7);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(486, 412);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "배관";
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.AutoGenerateColumns = false;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopCenter;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.strTypeDataGridViewTextBoxColumn,
this.btnTickness});
this.dataGridView1.DataSource = this.PipedataStorageBindingSource;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(3, 17);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowHeadersVisible = false;
this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.dataGridView1.Size = new System.Drawing.Size(480, 392);
this.dataGridView1.TabIndex = 0;
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
this.dataGridView1.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.dataGridView1_DataBindingComplete);
//
// btnTickness
//
this.btnTickness.HeaderText = "관경별";
this.btnTickness.Name = "btnTickness";
this.btnTickness.Text = "설정";
this.btnTickness.UseColumnTextForButtonValue = true;
//
// btn_Go
//
this.btn_Go.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btn_Go.Location = new System.Drawing.Point(281, 496);
this.btn_Go.Name = "btn_Go";
this.btn_Go.Size = new System.Drawing.Size(75, 23);
this.btn_Go.TabIndex = 1;
this.btn_Go.Text = "적용";
this.btn_Go.UseVisualStyleBackColor = true;
this.btn_Go.Click += new System.EventHandler(this.button1_Click);
//
// cbCategory
//
this.cbCategory.FormattingEnabled = true;
this.cbCategory.Location = new System.Drawing.Point(221, 467);
this.cbCategory.Name = "cbCategory";
this.cbCategory.Size = new System.Drawing.Size(140, 20);
this.cbCategory.TabIndex = 2;
this.cbCategory.SelectedIndexChanged += new System.EventHandler(this.cbCategory_SelectedIndexChanged);
//
// btn_Import
//
this.btn_Import.Location = new System.Drawing.Point(200, 496);
this.btn_Import.Name = "btn_Import";
this.btn_Import.Size = new System.Drawing.Size(75, 23);
this.btn_Import.TabIndex = 3;
this.btn_Import.Text = "불러오기";
this.btn_Import.UseVisualStyleBackColor = true;
this.btn_Import.Click += new System.EventHandler(this.btn_Import_Click);
//
// btn_Export
//
this.btn_Export.Location = new System.Drawing.Point(119, 496);
this.btn_Export.Name = "btn_Export";
this.btn_Export.Size = new System.Drawing.Size(75, 23);
this.btn_Export.TabIndex = 3;
this.btn_Export.Text = "내보내기";
this.btn_Export.UseVisualStyleBackColor = true;
this.btn_Export.Click += new System.EventHandler(this.btn_Export_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(166, 471);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(49, 12);
this.label1.TabIndex = 4;
this.label1.Text = "템플릿 :";
//
// btn_Cancel
//
this.btn_Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btn_Cancel.Location = new System.Drawing.Point(362, 496);
this.btn_Cancel.Name = "btn_Cancel";
this.btn_Cancel.Size = new System.Drawing.Size(75, 23);
this.btn_Cancel.TabIndex = 1;
this.btn_Cancel.Text = "취소";
this.btn_Cancel.UseVisualStyleBackColor = true;
this.btn_Cancel.Click += new System.EventHandler(this.button1_Click);
//
// btnCategory
//
this.btnCategory.Location = new System.Drawing.Point(367, 467);
this.btnCategory.Name = "btnCategory";
this.btnCategory.Size = new System.Drawing.Size(70, 23);
this.btnCategory.TabIndex = 3;
this.btnCategory.Text = "추가";
this.btnCategory.UseVisualStyleBackColor = true;
this.btnCategory.Click += new System.EventHandler(this.btnCategory_Click);
//
// btnCategoryDel
//
this.btnCategoryDel.Location = new System.Drawing.Point(443, 466);
this.btnCategoryDel.Name = "btnCategoryDel";
this.btnCategoryDel.Size = new System.Drawing.Size(70, 23);
this.btnCategoryDel.TabIndex = 3;
this.btnCategoryDel.Text = "삭제";
this.btnCategoryDel.UseVisualStyleBackColor = true;
this.btnCategoryDel.Click += new System.EventHandler(this.btnCategoryDel_Click);
//
// ckKeepInsulation
//
this.ckKeepInsulation.AutoSize = true;
this.ckKeepInsulation.Location = new System.Drawing.Point(16, 469);
this.ckKeepInsulation.Name = "ckKeepInsulation";
this.ckKeepInsulation.Size = new System.Drawing.Size(144, 16);
this.ckKeepInsulation.TabIndex = 18;
this.ckKeepInsulation.Text = "기 정의된 단열재 유지";
this.ckKeepInsulation.UseVisualStyleBackColor = true;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(12, 12);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(506, 451);
this.tabControl1.TabIndex = 19;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.groupBox1);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(498, 425);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "배관";
this.tabPage1.UseVisualStyleBackColor = true;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.groupBox2);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(498, 425);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "덕트";
this.tabPage2.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.textBox_Thickness);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.dataGridView2);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox2.Location = new System.Drawing.Point(3, 3);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(492, 419);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "덕트";
//
// textBox_Thickness
//
this.textBox_Thickness.Location = new System.Drawing.Point(348, 13);
this.textBox_Thickness.Name = "textBox_Thickness";
this.textBox_Thickness.Size = new System.Drawing.Size(141, 21);
this.textBox_Thickness.TabIndex = 5;
this.textBox_Thickness.TextChanged += new System.EventHandler(this.textBox_Thickness_TextChanged);
this.textBox_Thickness.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox_Thickness_KeyPress);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(277, 20);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(57, 12);
this.label2.TabIndex = 4;
this.label2.Text = "두께 입력";
//
// dataGridView2
//
this.dataGridView2.AllowUserToAddRows = false;
this.dataGridView2.AllowUserToDeleteRows = false;
this.dataGridView2.AllowUserToResizeRows = false;
this.dataGridView2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataGridView2.AutoGenerateColumns = false;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridView2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.strTypeDataGridViewTextBoxColumn1,
this.strLaggingTypeDataGridViewTextBoxColumn1,
this.dblLaggingThicknessDataGridViewTextBoxColumn1});
this.dataGridView2.DataSource = this.DuctdataStorageBindingSource;
this.dataGridView2.Location = new System.Drawing.Point(3, 40);
this.dataGridView2.Name = "dataGridView2";
this.dataGridView2.RowHeadersVisible = false;
this.dataGridView2.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.dataGridView2.Size = new System.Drawing.Size(486, 376);
this.dataGridView2.TabIndex = 0;
//
// ckPipe
//
this.ckPipe.AutoSize = true;
this.ckPipe.Checked = true;
this.ckPipe.CheckState = System.Windows.Forms.CheckState.Checked;
this.ckPipe.Location = new System.Drawing.Point(16, 500);
this.ckPipe.Name = "ckPipe";
this.ckPipe.Size = new System.Drawing.Size(48, 16);
this.ckPipe.TabIndex = 18;
this.ckPipe.Text = "배관";
this.ckPipe.UseVisualStyleBackColor = true;
//
// ckDuct
//
this.ckDuct.AutoSize = true;
this.ckDuct.Location = new System.Drawing.Point(70, 500);
this.ckDuct.Name = "ckDuct";
this.ckDuct.Size = new System.Drawing.Size(48, 16);
this.ckDuct.TabIndex = 18;
this.ckDuct.Text = "덕트";
this.ckDuct.UseVisualStyleBackColor = true;
//
// strTypeDataGridViewTextBoxColumn
//
this.strTypeDataGridViewTextBoxColumn.DataPropertyName = "strType";
this.strTypeDataGridViewTextBoxColumn.HeaderText = "배관 유형";
this.strTypeDataGridViewTextBoxColumn.Name = "strTypeDataGridViewTextBoxColumn";
//
// DuctdataStorageBindingSource
//
this.DuctdataStorageBindingSource.DataSource = typeof(KMBIM.Revit.Tools.LogicClass.DataStorage);
//
// strTypeDataGridViewTextBoxColumn1
//
this.strTypeDataGridViewTextBoxColumn1.DataPropertyName = "strType";
this.strTypeDataGridViewTextBoxColumn1.HeaderText = "덕트 유형";
this.strTypeDataGridViewTextBoxColumn1.Name = "strTypeDataGridViewTextBoxColumn1";
//
// strLaggingTypeDataGridViewTextBoxColumn1
//
this.strLaggingTypeDataGridViewTextBoxColumn1.DataPropertyName = "strLaggingType";
this.strLaggingTypeDataGridViewTextBoxColumn1.DataSource = this.DuctinsulationTypeBindingSource;
this.strLaggingTypeDataGridViewTextBoxColumn1.DisplayMember = "strType";
this.strLaggingTypeDataGridViewTextBoxColumn1.HeaderText = "단열재 유형";
this.strLaggingTypeDataGridViewTextBoxColumn1.Name = "strLaggingTypeDataGridViewTextBoxColumn1";
this.strLaggingTypeDataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.strLaggingTypeDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.strLaggingTypeDataGridViewTextBoxColumn1.ValueMember = "strType";
//
// DuctinsulationTypeBindingSource
//
this.DuctinsulationTypeBindingSource.DataSource = typeof(KMBIM.Revit.Tools.LogicClass.InsulationType);
//
// dblLaggingThicknessDataGridViewTextBoxColumn1
//
this.dblLaggingThicknessDataGridViewTextBoxColumn1.DataPropertyName = "dblLaggingThickness";
this.dblLaggingThicknessDataGridViewTextBoxColumn1.HeaderText = "두께";
this.dblLaggingThicknessDataGridViewTextBoxColumn1.Name = "dblLaggingThicknessDataGridViewTextBoxColumn1";
this.dblLaggingThicknessDataGridViewTextBoxColumn1.Width = 50;
//
// PipeinsulationTypeBindingSource
//
this.PipeinsulationTypeBindingSource.DataSource = typeof(KMBIM.Revit.Tools.LogicClass.InsulationType);
//
// PipedataStorageBindingSource
//
this.PipedataStorageBindingSource.DataSource = typeof(KMBIM.Revit.Tools.LogicClass.DataStorage);
//
// InsulationSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(528, 531);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.ckDuct);
this.Controls.Add(this.ckPipe);
this.Controls.Add(this.ckKeepInsulation);
this.Controls.Add(this.label1);
this.Controls.Add(this.btn_Export);
this.Controls.Add(this.btn_Import);
this.Controls.Add(this.btnCategoryDel);
this.Controls.Add(this.btnCategory);
this.Controls.Add(this.cbCategory);
this.Controls.Add(this.btn_Cancel);
this.Controls.Add(this.btn_Go);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "InsulationSettings";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "단열재 설정";
this.Load += new System.EventHandler(this.InsulationSettings_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.InsulationSettings_KeyDown);
this.groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.DuctdataStorageBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.DuctinsulationTypeBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.PipeinsulationTypeBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.PipedataStorageBindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.BindingSource PipeinsulationTypeBindingSource;
private System.Windows.Forms.Button btn_Go;
private System.Windows.Forms.ComboBox cbCategory;
private System.Windows.Forms.Button btn_Import;
private System.Windows.Forms.Button btn_Export;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btn_Cancel;
private System.Windows.Forms.DataGridViewTextBoxColumn strPipeTypeDataGridViewTextBoxColumn;
private System.Windows.Forms.BindingSource PipedataStorageBindingSource;
private System.Windows.Forms.DataGridViewTextBoxColumn strPipeTypeDataGridViewTextBoxColumn1;
private System.Windows.Forms.BindingSource DuctdataStorageBindingSource;
private System.Windows.Forms.Button btnCategory;
private System.Windows.Forms.BindingSource DuctinsulationTypeBindingSource;
private System.Windows.Forms.Button btnCategoryDel;
private System.Windows.Forms.CheckBox ckKeepInsulation;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.DataGridView dataGridView2;
private System.Windows.Forms.DataGridViewTextBoxColumn strTypeDataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewComboBoxColumn strLaggingTypeDataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dblLaggingThicknessDataGridViewTextBoxColumn1;
private System.Windows.Forms.CheckBox ckPipe;
private System.Windows.Forms.CheckBox ckDuct;
private System.Windows.Forms.DataGridViewTextBoxColumn strTypeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewButtonColumn btnTickness;
private System.Windows.Forms.TextBox textBox_Thickness;
private System.Windows.Forms.Label label2;
}
}