PersistentWindows/Ninjacrab.PersistentWindows.Solution/Common/NameDbKey.Designer.cs
2023-03-03 11:59:41 -08:00

91 lines
3.7 KiB
C#

namespace PersistentWindows.Common
{
partial class NameDbEntry
{
/// <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.hint = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// hint
//
this.hint.AutoSize = true;
this.hint.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.hint.Location = new System.Drawing.Point(237, 98);
this.hint.Name = "hint";
this.hint.Size = new System.Drawing.Size(128, 25);
this.hint.TabIndex = 0;
this.hint.Text = "Enter a name";
this.hint.Click += new System.EventHandler(this.hint_Click);
//
// textBox1
//
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textBox1.Location = new System.Drawing.Point(187, 143);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(234, 30);
this.textBox1.TabIndex = 1;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// button1
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.Location = new System.Drawing.Point(268, 208);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(62, 36);
this.button1.TabIndex = 2;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// NameDbEntry
//
this.AcceptButton = this.button1;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(609, 300);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.hint);
this.Name = "NameDbEntry";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Name of DB Entry";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label hint;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
}
}