165 lines
9.0 KiB
C#
165 lines
9.0 KiB
C#
namespace KMBIM.Revit.Tools.Cmd.MatchProp
|
|
{
|
|
partial class FormSelectParameter1
|
|
{
|
|
/// <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.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(FormSelectParameter1));
|
|
this.dataGridViewParameters = new System.Windows.Forms.DataGridView();
|
|
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.panelOkCancel = new System.Windows.Forms.Panel();
|
|
this.Select_All_CheckBox = new System.Windows.Forms.Button();
|
|
this.buttonOK = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewParameters)).BeginInit();
|
|
this.panelOkCancel.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridViewParameters
|
|
//
|
|
this.dataGridViewParameters.AllowUserToAddRows = false;
|
|
this.dataGridViewParameters.AllowUserToDeleteRows = false;
|
|
this.dataGridViewParameters.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dataGridViewParameters.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridViewParameters.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.Column1,
|
|
this.Column2});
|
|
this.dataGridViewParameters.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
|
|
this.dataGridViewParameters.Location = new System.Drawing.Point(12, 12);
|
|
this.dataGridViewParameters.Name = "dataGridViewParameters";
|
|
this.dataGridViewParameters.ReadOnly = true;
|
|
this.dataGridViewParameters.RowHeadersVisible = false;
|
|
this.dataGridViewParameters.RowTemplate.Height = 23;
|
|
this.dataGridViewParameters.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
this.dataGridViewParameters.Size = new System.Drawing.Size(320, 348);
|
|
this.dataGridViewParameters.TabIndex = 66;
|
|
this.dataGridViewParameters.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewParameters_CellContentClick);
|
|
this.dataGridViewParameters.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewParameters_CellValueChanged);
|
|
this.dataGridViewParameters.SelectionChanged += new System.EventHandler(this.dataGridViewParameters_SelectionChanged);
|
|
//
|
|
// Column1
|
|
//
|
|
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.White;
|
|
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
|
|
this.Column1.DefaultCellStyle = dataGridViewCellStyle1;
|
|
this.Column1.HeaderText = "매개변수";
|
|
this.Column1.Name = "Column1";
|
|
this.Column1.ReadOnly = true;
|
|
this.Column1.Width = 170;
|
|
//
|
|
// Column2
|
|
//
|
|
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.White;
|
|
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
|
|
this.Column2.DefaultCellStyle = dataGridViewCellStyle2;
|
|
this.Column2.HeaderText = "값";
|
|
this.Column2.Name = "Column2";
|
|
this.Column2.ReadOnly = true;
|
|
this.Column2.Width = 150;
|
|
//
|
|
// panelOkCancel
|
|
//
|
|
this.panelOkCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.panelOkCancel.Controls.Add(this.Select_All_CheckBox);
|
|
this.panelOkCancel.Controls.Add(this.buttonOK);
|
|
this.panelOkCancel.Controls.Add(this.buttonCancel);
|
|
this.panelOkCancel.Location = new System.Drawing.Point(12, 366);
|
|
this.panelOkCancel.Name = "panelOkCancel";
|
|
this.panelOkCancel.Size = new System.Drawing.Size(320, 32);
|
|
this.panelOkCancel.TabIndex = 69;
|
|
//
|
|
// Select_All_CheckBox
|
|
//
|
|
this.Select_All_CheckBox.Location = new System.Drawing.Point(6, 3);
|
|
this.Select_All_CheckBox.Name = "Select_All_CheckBox";
|
|
this.Select_All_CheckBox.Size = new System.Drawing.Size(105, 25);
|
|
this.Select_All_CheckBox.TabIndex = 68;
|
|
this.Select_All_CheckBox.Text = "모두 선택";
|
|
this.Select_All_CheckBox.UseVisualStyleBackColor = true;
|
|
this.Select_All_CheckBox.Click += new System.EventHandler(this.Select_All_CheckBox_Click);
|
|
//
|
|
// buttonOK
|
|
//
|
|
this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)));
|
|
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.buttonOK.Location = new System.Drawing.Point(116, 3);
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.Size = new System.Drawing.Size(95, 26);
|
|
this.buttonOK.TabIndex = 67;
|
|
this.buttonOK.Text = "확인";
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonCancel.Location = new System.Drawing.Point(217, 3);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(103, 26);
|
|
this.buttonCancel.TabIndex = 66;
|
|
this.buttonCancel.Text = "취소";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// FormSelectParameter1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(344, 410);
|
|
this.Controls.Add(this.dataGridViewParameters);
|
|
this.Controls.Add(this.panelOkCancel);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormSelectParameter1";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "매개변수";
|
|
this.Load += new System.EventHandler(this.FormSelectParameter_Load);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormSelectParameter1_KeyDown);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridViewParameters)).EndInit();
|
|
this.panelOkCancel.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.DataGridView dataGridViewParameters;
|
|
private System.Windows.Forms.Panel panelOkCancel;
|
|
private System.Windows.Forms.Button buttonOK;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button Select_All_CheckBox;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
|
|
}
|
|
} |