mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
85 lines
No EOL
3.2 KiB
C#
85 lines
No EOL
3.2 KiB
C#
|
|
namespace PersistentWindows.Common
|
|
{
|
|
partial class DbKeySelect
|
|
{
|
|
/// <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.ListLayout = new System.Windows.Forms.ListBox();
|
|
this.Ok = new System.Windows.Forms.Button();
|
|
this.selected = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// ListLayout
|
|
//
|
|
this.ListLayout.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.ListLayout.FormattingEnabled = true;
|
|
this.ListLayout.ItemHeight = 20;
|
|
this.ListLayout.Location = new System.Drawing.Point(60, 30);
|
|
this.ListLayout.Name = "ListLayout";
|
|
this.ListLayout.Size = new System.Drawing.Size(685, 244);
|
|
this.ListLayout.TabIndex = 0;
|
|
this.ListLayout.SelectedIndexChanged += new System.EventHandler(this.ListLayout_SelectedIndexChanged);
|
|
//
|
|
// Ok
|
|
//
|
|
this.Ok.Location = new System.Drawing.Point(351, 385);
|
|
this.Ok.Name = "Ok";
|
|
this.Ok.Size = new System.Drawing.Size(105, 36);
|
|
this.Ok.TabIndex = 1;
|
|
this.Ok.Text = "OK";
|
|
this.Ok.UseVisualStyleBackColor = true;
|
|
this.Ok.Click += new System.EventHandler(this.Ok_Click);
|
|
//
|
|
// selected
|
|
//
|
|
this.selected.Location = new System.Drawing.Point(60, 290);
|
|
this.selected.Name = "selected";
|
|
this.selected.Size = new System.Drawing.Size(683, 80);
|
|
this.selected.TabIndex = 2;
|
|
//
|
|
// DbKeySelect
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.selected);
|
|
this.Controls.Add(this.Ok);
|
|
this.Controls.Add(this.ListLayout);
|
|
this.Name = "DbKeySelect";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Select a desktop layout to restore";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListBox ListLayout;
|
|
private System.Windows.Forms.Button Ok;
|
|
private System.Windows.Forms.Label selected;
|
|
}
|
|
} |