mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-11 07:26:16 +00:00
133 lines
6.1 KiB
C#
133 lines
6.1 KiB
C#
//
|
|
// (C) Copyright 2003-2019 by Autodesk, Inc.
|
|
//
|
|
// Permission to use, copy, modify, and distribute this software in
|
|
// object code form for any purpose and without fee is hereby granted,
|
|
// provided that the above copyright notice appears in all copies and
|
|
// that both that copyright notice and the limited warranty and
|
|
// restricted rights notice below appear in all supporting
|
|
// documentation.
|
|
//
|
|
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
|
|
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
|
|
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
|
|
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
|
|
// UNINTERRUPTED OR ERROR FREE.
|
|
//
|
|
// Use, duplication, or disclosure by the U.S. Government is subject to
|
|
// restrictions set forth in FAR 52.227-19 (Commercial Computer
|
|
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
|
|
// (Rights in Technical Data and Computer Software), as applicable.
|
|
//
|
|
|
|
namespace Revit.SDK.Samples.PowerCircuit.CS
|
|
{
|
|
partial class EditCircuitForm
|
|
{
|
|
/// <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();
|
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|
this.buttonRemove = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.buttonSelectPanel = new System.Windows.Forms.Button();
|
|
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonAdd
|
|
//
|
|
this.buttonAdd.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.buttonAdd.Image = global::Revit.SDK.Samples.PowerCircuit.CS.Properties.Resources.AddToCircuit;
|
|
this.buttonAdd.Location = new System.Drawing.Point(12, 12);
|
|
this.buttonAdd.Name = "buttonAdd";
|
|
this.buttonAdd.Size = new System.Drawing.Size(34, 28);
|
|
this.buttonAdd.TabIndex = 0;
|
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|
//
|
|
// buttonRemove
|
|
//
|
|
this.buttonRemove.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.buttonRemove.Image = global::Revit.SDK.Samples.PowerCircuit.CS.Properties.Resources.RemoveFromCircuit;
|
|
this.buttonRemove.Location = new System.Drawing.Point(52, 12);
|
|
this.buttonRemove.Name = "buttonRemove";
|
|
this.buttonRemove.Size = new System.Drawing.Size(34, 28);
|
|
this.buttonRemove.TabIndex = 1;
|
|
this.buttonRemove.UseVisualStyleBackColor = true;
|
|
this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonCancel.Image = global::Revit.SDK.Samples.PowerCircuit.CS.Properties.Resources.Cancel;
|
|
this.buttonCancel.Location = new System.Drawing.Point(132, 11);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 28);
|
|
this.buttonCancel.TabIndex = 2;
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonSelectPanel
|
|
//
|
|
this.buttonSelectPanel.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.buttonSelectPanel.Image = global::Revit.SDK.Samples.PowerCircuit.CS.Properties.Resources.SelectPanel;
|
|
this.buttonSelectPanel.Location = new System.Drawing.Point(92, 11);
|
|
this.buttonSelectPanel.Name = "buttonSelectPanel";
|
|
this.buttonSelectPanel.Size = new System.Drawing.Size(34, 28);
|
|
this.buttonSelectPanel.TabIndex = 1;
|
|
this.buttonSelectPanel.UseVisualStyleBackColor = true;
|
|
this.buttonSelectPanel.Click += new System.EventHandler(this.buttonSelectPanel_Click);
|
|
//
|
|
// EditCircuitForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.buttonCancel;
|
|
this.ClientSize = new System.Drawing.Size(218, 51);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSelectPanel);
|
|
this.Controls.Add(this.buttonRemove);
|
|
this.Controls.Add(this.buttonAdd);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "EditCircuitForm";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Edit Circuit";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonAdd;
|
|
private System.Windows.Forms.Button buttonRemove;
|
|
private System.Windows.Forms.Button buttonCancel;
|
|
private System.Windows.Forms.Button buttonSelectPanel;
|
|
private System.Windows.Forms.ToolTip toolTip;
|
|
}
|
|
} |