SafeDispatch/MotoRepeaterCore/MenuButton.Designer.cs

102 lines
4.3 KiB
C#

namespace MotoRepeater
{
partial class MenuButton
{
/// <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 Component 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.labelName = new System.Windows.Forms.Label();
this.pictureBox = new System.Windows.Forms.PictureBox();
this.panelBack = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// labelName
//
this.labelName.AutoSize = true;
this.labelName.BackColor = System.Drawing.Color.Transparent;
this.labelName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(190)))), ((int)(((byte)(192)))), ((int)(((byte)(189)))));
this.labelName.Location = new System.Drawing.Point(49, 14);
this.labelName.Name = "labelName";
this.labelName.Size = new System.Drawing.Size(54, 17);
this.labelName.TabIndex = 2;
this.labelName.Tag = "menuStatus";
this.labelName.Text = "Status";
this.labelName.Click += new System.EventHandler(this.OnObjClick);
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(13, 8);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(30, 30);
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox.TabIndex = 3;
this.pictureBox.TabStop = false;
this.pictureBox.Tag = "menuStatus";
this.pictureBox.Click += new System.EventHandler(this.OnObjClick);
//
// panelBack
//
this.panelBack.BackColor = System.Drawing.Color.Transparent;
this.panelBack.Cursor = System.Windows.Forms.Cursors.Hand;
this.panelBack.ImeMode = System.Windows.Forms.ImeMode.Off;
this.panelBack.Location = new System.Drawing.Point(0, 0);
this.panelBack.Name = "panelBack";
this.panelBack.Size = new System.Drawing.Size(202, 45);
this.panelBack.TabIndex = 4;
this.panelBack.Tag = "menuStatus";
this.panelBack.Click += new System.EventHandler(this.OnObjClick);
//
// MenuButton
//
this.AccessibleDescription = "Custom menu button";
this.AccessibleName = "MenuButton";
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Transparent;
this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Controls.Add(this.pictureBox);
this.Controls.Add(this.labelName);
this.Controls.Add(this.panelBack);
this.Cursor = System.Windows.Forms.Cursors.Hand;
this.Name = "MenuButton";
this.Size = new System.Drawing.Size(202, 45);
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox;
private System.Windows.Forms.Label labelName;
private System.Windows.Forms.Panel panelBack;
}
}