namespace Revit.SDK.Samples.ViewPrinter.CS { partial class ReNameForm { /// /// 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() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.previousNameTextBox = new System.Windows.Forms.TextBox(); this.newNameTextBox = new System.Windows.Forms.TextBox(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 20); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(51, 13); this.label1.TabIndex = 0; this.label1.Text = "Previous:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 44); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(32, 13); this.label2.TabIndex = 0; this.label2.Text = "New:"; // // previousNameTextBox // this.previousNameTextBox.Location = new System.Drawing.Point(69, 17); this.previousNameTextBox.Name = "previousNameTextBox"; this.previousNameTextBox.Size = new System.Drawing.Size(211, 20); this.previousNameTextBox.TabIndex = 1; // // newNameTextBox // this.newNameTextBox.Location = new System.Drawing.Point(69, 41); this.newNameTextBox.Name = "newNameTextBox"; this.newNameTextBox.Size = new System.Drawing.Size(211, 20); this.newNameTextBox.TabIndex = 1; // // okButton // this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(124, 81); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 2; this.okButton.Text = "&OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // cancelButton // this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(205, 81); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 2; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // ReNameForm // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(292, 116); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Controls.Add(this.newNameTextBox); this.Controls.Add(this.previousNameTextBox); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ReNameForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Rename"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox previousNameTextBox; private System.Windows.Forms.TextBox newNameTextBox; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; } }