73 lines
2.1 KiB
C#
73 lines
2.1 KiB
C#
namespace TBF.Forms
|
|
{
|
|
partial class TabNameDlg
|
|
{
|
|
/// <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.tabNameTextBox = new System.Windows.Forms.TextBox();
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// tabNameTextBox
|
|
//
|
|
this.tabNameTextBox.Location = new System.Drawing.Point(33, 25);
|
|
this.tabNameTextBox.Name = "tabNameTextBox";
|
|
this.tabNameTextBox.Size = new System.Drawing.Size(145, 20);
|
|
this.tabNameTextBox.TabIndex = 1;
|
|
//
|
|
// okButton
|
|
//
|
|
this.okButton.Location = new System.Drawing.Point(209, 18);
|
|
this.okButton.Name = "okButton";
|
|
this.okButton.Size = new System.Drawing.Size(85, 33);
|
|
this.okButton.TabIndex = 2;
|
|
this.okButton.Text = "OK";
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|
//
|
|
// TabNameDlg
|
|
//
|
|
this.AcceptButton = this.okButton;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(316, 69);
|
|
this.Controls.Add(this.okButton);
|
|
this.Controls.Add(this.tabNameTextBox);
|
|
this.Name = "TabNameDlg";
|
|
this.Text = "TabName";
|
|
this.Load += new System.EventHandler(this.TabNameDlg_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox tabNameTextBox;
|
|
private System.Windows.Forms.Button okButton;
|
|
}
|
|
} |