123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
-
- namespace Optimizer
- {
- partial class ToggleCard
- {
- /// <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.Label = new System.Windows.Forms.Label();
- this.Panel = new System.Windows.Forms.Panel();
- this.Toggle = new Optimizer.MoonToggle();
- this.Panel.SuspendLayout();
- this.SuspendLayout();
- //
- // Label
- //
- this.Label.AutoSize = true;
- this.Label.Cursor = System.Windows.Forms.Cursors.Hand;
- this.Label.Location = new System.Drawing.Point(52, 1);
- this.Label.Name = "Label";
- this.Label.Size = new System.Drawing.Size(45, 19);
- this.Label.TabIndex = 1;
- this.Label.Text = "label1";
- this.Label.Click += new System.EventHandler(this.Label_Click);
- this.Label.MouseEnter += new System.EventHandler(this.Label_MouseEnter);
- this.Label.MouseLeave += new System.EventHandler(this.Label_MouseLeave);
- this.Label.MouseHover += new System.EventHandler(this.Label_MouseHover);
- //
- // Panel
- //
- this.Panel.Controls.Add(this.Label);
- this.Panel.Controls.Add(this.Toggle);
- this.Panel.Dock = System.Windows.Forms.DockStyle.Fill;
- this.Panel.Location = new System.Drawing.Point(0, 0);
- this.Panel.Name = "Panel";
- this.Panel.Size = new System.Drawing.Size(334, 25);
- this.Panel.TabIndex = 0;
- //
- // Toggle
- //
- this.Toggle.AutoSize = true;
- this.Toggle.ForeColor = System.Drawing.Color.White;
- this.Toggle.Location = new System.Drawing.Point(0, 1);
- this.Toggle.MinimumSize = new System.Drawing.Size(46, 22);
- this.Toggle.Name = "Toggle";
- this.Toggle.Size = new System.Drawing.Size(46, 22);
- this.Toggle.TabIndex = 2;
- this.Toggle.UseVisualStyleBackColor = true;
- this.Toggle.CheckedChanged += new System.EventHandler(this.Toggle_CheckedChanged);
- //
- // ToggleCard
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.Controls.Add(this.Panel);
- this.DoubleBuffered = true;
- this.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.ForeColor = System.Drawing.Color.White;
- this.Name = "ToggleCard";
- this.Size = new System.Drawing.Size(334, 25);
- this.Panel.ResumeLayout(false);
- this.Panel.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel Panel;
- internal System.Windows.Forms.Label Label;
- internal MoonToggle Toggle;
- }
- }
|