PersistentWindows/Ninjacrab.PersistentWindows.Solution/Common/HotKeyWindow.Designer.cs

174 lines
No EOL
7.9 KiB
C#

namespace PersistentWindows.Common
{
partial class HotKeyWindow
{
/// <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.buttonPrevTab = new System.Windows.Forms.Button();
this.buttonNextTab = new System.Windows.Forms.Button();
this.buttonCloseTab = new System.Windows.Forms.Button();
this.buttonNewTab = new System.Windows.Forms.Button();
this.buttonHome = new System.Windows.Forms.Button();
this.buttonEnd = new System.Windows.Forms.Button();
this.buttonPrevUrl = new System.Windows.Forms.Button();
this.buttonNextUrl = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonPrevTab
//
this.buttonPrevTab.BackColor = System.Drawing.SystemColors.Info;
this.buttonPrevTab.Location = new System.Drawing.Point(23, 12);
this.buttonPrevTab.Name = "buttonPrevTab";
this.buttonPrevTab.Size = new System.Drawing.Size(73, 47);
this.buttonPrevTab.TabIndex = 0;
this.buttonPrevTab.TabStop = false;
this.buttonPrevTab.Text = "Prev Tab";
this.buttonPrevTab.UseVisualStyleBackColor = false;
this.buttonPrevTab.Click += new System.EventHandler(this.buttonPrevTab_Click);
//
// buttonNextTab
//
this.buttonNextTab.BackColor = System.Drawing.SystemColors.Info;
this.buttonNextTab.Location = new System.Drawing.Point(236, 12);
this.buttonNextTab.Name = "buttonNextTab";
this.buttonNextTab.Size = new System.Drawing.Size(72, 47);
this.buttonNextTab.TabIndex = 1;
this.buttonNextTab.TabStop = false;
this.buttonNextTab.Text = "Next Tab";
this.buttonNextTab.UseVisualStyleBackColor = false;
this.buttonNextTab.Click += new System.EventHandler(this.buttonNextTab_Click);
//
// buttonCloseTab
//
this.buttonCloseTab.BackColor = System.Drawing.SystemColors.Info;
this.buttonCloseTab.Location = new System.Drawing.Point(23, 116);
this.buttonCloseTab.Name = "buttonCloseTab";
this.buttonCloseTab.Size = new System.Drawing.Size(73, 52);
this.buttonCloseTab.TabIndex = 2;
this.buttonCloseTab.TabStop = false;
this.buttonCloseTab.Text = "Close Tab";
this.buttonCloseTab.UseVisualStyleBackColor = false;
this.buttonCloseTab.Click += new System.EventHandler(this.buttonCloseTab_Click);
//
// buttonNewTab
//
this.buttonNewTab.BackColor = System.Drawing.SystemColors.Info;
this.buttonNewTab.Location = new System.Drawing.Point(236, 116);
this.buttonNewTab.Name = "buttonNewTab";
this.buttonNewTab.Size = new System.Drawing.Size(72, 52);
this.buttonNewTab.TabIndex = 3;
this.buttonNewTab.TabStop = false;
this.buttonNewTab.Text = "New Tab";
this.buttonNewTab.UseVisualStyleBackColor = false;
this.buttonNewTab.Click += new System.EventHandler(this.buttonNewTab_Click);
//
// buttonHome
//
this.buttonHome.BackColor = System.Drawing.SystemColors.Info;
this.buttonHome.Location = new System.Drawing.Point(133, 12);
this.buttonHome.Name = "buttonHome";
this.buttonHome.Size = new System.Drawing.Size(73, 36);
this.buttonHome.TabIndex = 4;
this.buttonHome.TabStop = false;
this.buttonHome.Text = "Home";
this.buttonHome.UseVisualStyleBackColor = false;
this.buttonHome.Click += new System.EventHandler(this.buttonHome_Click);
//
// buttonEnd
//
this.buttonEnd.BackColor = System.Drawing.SystemColors.Info;
this.buttonEnd.Location = new System.Drawing.Point(133, 133);
this.buttonEnd.Name = "buttonEnd";
this.buttonEnd.Size = new System.Drawing.Size(73, 35);
this.buttonEnd.TabIndex = 5;
this.buttonEnd.TabStop = false;
this.buttonEnd.Text = "End";
this.buttonEnd.UseVisualStyleBackColor = false;
this.buttonEnd.Click += new System.EventHandler(this.buttonEnd_Click);
//
// buttonPrevUrl
//
this.buttonPrevUrl.BackColor = System.Drawing.SystemColors.Info;
this.buttonPrevUrl.Location = new System.Drawing.Point(23, 65);
this.buttonPrevUrl.Name = "buttonPrevUrl";
this.buttonPrevUrl.Size = new System.Drawing.Size(73, 45);
this.buttonPrevUrl.TabIndex = 6;
this.buttonPrevUrl.TabStop = false;
this.buttonPrevUrl.Text = "Prev Url";
this.buttonPrevUrl.UseVisualStyleBackColor = false;
this.buttonPrevUrl.Click += new System.EventHandler(this.buttonPrevUrl_Click);
//
// buttonNextUrl
//
this.buttonNextUrl.BackColor = System.Drawing.SystemColors.Info;
this.buttonNextUrl.Location = new System.Drawing.Point(236, 65);
this.buttonNextUrl.Name = "buttonNextUrl";
this.buttonNextUrl.Size = new System.Drawing.Size(72, 45);
this.buttonNextUrl.TabIndex = 7;
this.buttonNextUrl.TabStop = false;
this.buttonNextUrl.Text = "Next Url";
this.buttonNextUrl.UseVisualStyleBackColor = false;
this.buttonNextUrl.Click += new System.EventHandler(this.buttonNextUrl_Click);
//
// HotKeyWindow
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
this.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.ClientSize = new System.Drawing.Size(328, 183);
this.Controls.Add(this.buttonNextUrl);
this.Controls.Add(this.buttonPrevUrl);
this.Controls.Add(this.buttonEnd);
this.Controls.Add(this.buttonHome);
this.Controls.Add(this.buttonNewTab);
this.Controls.Add(this.buttonCloseTab);
this.Controls.Add(this.buttonNextTab);
this.Controls.Add(this.buttonPrevTab);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "HotKeyWindow";
this.Opacity = 0.5D;
this.ShowInTaskbar = false;
this.TopMost = true;
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonPrevTab;
private System.Windows.Forms.Button buttonNextTab;
private System.Windows.Forms.Button buttonCloseTab;
private System.Windows.Forms.Button buttonNewTab;
private System.Windows.Forms.Button buttonHome;
private System.Windows.Forms.Button buttonEnd;
private System.Windows.Forms.Button buttonPrevUrl;
private System.Windows.Forms.Button buttonNextUrl;
}
}