using System.Windows.Forms; using System.Drawing; namespace PersistentWindows.Common { partial class LayoutProfile { /// /// 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.SnapshotName = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // SnapshotName // 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.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.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 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 = "LayoutProfile"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Enter the name of snapshot"; this.Load += new System.EventHandler(this.LayoutProfile_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private TextBox SnapshotName; private Label label1; } }