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

82 lines
No EOL
3.2 KiB
C#

using System.Windows.Forms;
using System.Drawing;
namespace PersistentWindows.Common
{
partial class LayoutProfile
{
/// <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.SnapshotName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// ProfileName
//
this.SnapshotName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.SnapshotName.Location = new System.Drawing.Point(230, 130);
this.SnapshotName.MaxLength = 1;
this.SnapshotName.Name = "SnapshotName";
this.SnapshotName.Size = new System.Drawing.Size(45, 30);
this.SnapshotName.TabIndex = 1;
this.SnapshotName.TextChanged += new System.EventHandler(this.ProfileName_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(41, 79);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(413, 25);
this.label1.TabIndex = 9;
this.label1.Text = "Enter one digit or a letter to name the snapshot";
//
// LayoutProfile
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(510, 225);
this.Controls.Add(this.label1);
this.Controls.Add(this.SnapshotName);
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ChooseSnapshotName";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Choose snapshot name";
this.Load += new System.EventHandler(this.LayoutProfile_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox SnapshotName;
private Label label1;
}
}