namespace UniversalEditor.UserInterface.WindowsForms.Dialogs { partial class SessionDialog { /// /// 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.cmdSave = new System.Windows.Forms.Button(); this.cmdLoad = new System.Windows.Forms.Button(); this.lv = new AwesomeControls.ListView.ListViewControl(); this.cmdClose = new System.Windows.Forms.Button(); this.txtSessionName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.label1.BackColor = System.Drawing.Color.Transparent; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(382, 23); this.label1.TabIndex = 0; this.label1.Text = "Select a session to open, or create a new session."; // // cmdSave // this.cmdSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cmdSave.Enabled = false; this.cmdSave.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmdSave.Location = new System.Drawing.Point(238, 192); this.cmdSave.Name = "cmdSave"; this.cmdSave.Size = new System.Drawing.Size(75, 23); this.cmdSave.TabIndex = 5; this.cmdSave.Text = "&Save"; this.cmdSave.UseVisualStyleBackColor = true; this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click); // // cmdLoad // this.cmdLoad.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cmdLoad.Enabled = false; this.cmdLoad.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmdLoad.Location = new System.Drawing.Point(157, 192); this.cmdLoad.Name = "cmdLoad"; this.cmdLoad.Size = new System.Drawing.Size(75, 23); this.cmdLoad.TabIndex = 4; this.cmdLoad.Text = "&Load"; this.cmdLoad.UseVisualStyleBackColor = true; this.cmdLoad.Click += new System.EventHandler(this.cmdLoad_Click); // // lv // this.lv.AllowSorting = true; this.lv.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.lv.BackColor = System.Drawing.SystemColors.Window; this.lv.DefaultItemHeight = 24; this.lv.ForeColor = System.Drawing.SystemColors.WindowText; this.lv.FullRowSelect = true; this.lv.HideSelection = false; this.lv.LargeImageList = null; this.lv.Location = new System.Drawing.Point(12, 44); this.lv.Mode = AwesomeControls.ListView.ListViewMode.List; this.lv.Name = "lv"; this.lv.ShadeColor = System.Drawing.Color.WhiteSmoke; this.lv.Size = new System.Drawing.Size(382, 106); this.lv.SmallImageList = null; this.lv.SortColumn = null; this.lv.TabIndex = 1; this.lv.SelectionChanged += new System.EventHandler(this.lv_SelectionChanged); // // cmdClose // this.cmdClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.System; this.cmdClose.Location = new System.Drawing.Point(319, 192); this.cmdClose.Name = "cmdClose"; this.cmdClose.Size = new System.Drawing.Size(75, 23); this.cmdClose.TabIndex = 6; this.cmdClose.Text = "Close"; this.cmdClose.UseVisualStyleBackColor = true; this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click); // // txtSessionName // this.txtSessionName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSessionName.Location = new System.Drawing.Point(95, 156); this.txtSessionName.Name = "txtSessionName"; this.txtSessionName.Size = new System.Drawing.Size(299, 20); this.txtSessionName.TabIndex = 3; this.txtSessionName.TextChanged += new System.EventHandler(this.txtSessionName_TextChanged); // // label2 // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label2.BackColor = System.Drawing.Color.Transparent; this.label2.Location = new System.Drawing.Point(12, 159); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(77, 17); this.label2.TabIndex = 2; this.label2.Text = "Session name:"; // // SessionDialog // this.AcceptButton = this.cmdLoad; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cmdClose; this.ClientSize = new System.Drawing.Size(406, 227); this.Controls.Add(this.txtSessionName); this.Controls.Add(this.lv); this.Controls.Add(this.cmdLoad); this.Controls.Add(this.cmdClose); this.Controls.Add(this.cmdSave); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "SessionDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Session Manager"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Button cmdSave; private System.Windows.Forms.Button cmdLoad; private AwesomeControls.ListView.ListViewControl lv; private System.Windows.Forms.Button cmdClose; private System.Windows.Forms.TextBox txtSessionName; private System.Windows.Forms.Label label2; } }