mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-13 08:17:42 +00:00
78 lines
3.1 KiB
C#
78 lines
3.1 KiB
C#
namespace RevitLookup.Test.Forms
|
|
{
|
|
partial class Elements
|
|
{
|
|
/// <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.m_treeView = new System.Windows.Forms.TreeView();
|
|
this.m_btnOk = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// m_treeView
|
|
//
|
|
this.m_treeView.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.m_treeView.Location = new System.Drawing.Point(12, 12);
|
|
this.m_treeView.Name = "m_treeView";
|
|
this.m_treeView.Size = new System.Drawing.Size(265, 323);
|
|
this.m_treeView.TabIndex = 0;
|
|
//
|
|
// m_btnOk
|
|
//
|
|
this.m_btnOk.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.m_btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.m_btnOk.Location = new System.Drawing.Point(107, 341);
|
|
this.m_btnOk.Name = "m_btnOk";
|
|
this.m_btnOk.Size = new System.Drawing.Size(75, 23);
|
|
this.m_btnOk.TabIndex = 1;
|
|
this.m_btnOk.Text = "OK";
|
|
this.m_btnOk.UseVisualStyleBackColor = true;
|
|
this.m_btnOk.Click += new System.EventHandler(this.m_btnOk_Click);
|
|
//
|
|
// Elements
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(289, 376);
|
|
this.Controls.Add(this.m_btnOk);
|
|
this.Controls.Add(this.m_treeView);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "Elements";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Elements";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TreeView m_treeView;
|
|
private System.Windows.Forms.Button m_btnOk;
|
|
}
|
|
} |