ToggleCard.Designer.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. 
  2. namespace Optimizer
  3. {
  4. partial class ToggleCard
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Component Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.Label = new System.Windows.Forms.Label();
  30. this.Panel = new System.Windows.Forms.Panel();
  31. this.Toggle = new Optimizer.MoonToggle();
  32. this.Panel.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // Label
  36. //
  37. this.Label.AutoSize = true;
  38. this.Label.Cursor = System.Windows.Forms.Cursors.Hand;
  39. this.Label.Location = new System.Drawing.Point(52, 1);
  40. this.Label.Name = "Label";
  41. this.Label.Size = new System.Drawing.Size(45, 19);
  42. this.Label.TabIndex = 1;
  43. this.Label.Text = "label1";
  44. this.Label.Click += new System.EventHandler(this.Label_Click);
  45. this.Label.MouseEnter += new System.EventHandler(this.Label_MouseEnter);
  46. this.Label.MouseLeave += new System.EventHandler(this.Label_MouseLeave);
  47. this.Label.MouseHover += new System.EventHandler(this.Label_MouseHover);
  48. //
  49. // Panel
  50. //
  51. this.Panel.Controls.Add(this.Label);
  52. this.Panel.Controls.Add(this.Toggle);
  53. this.Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  54. this.Panel.Location = new System.Drawing.Point(0, 0);
  55. this.Panel.Name = "Panel";
  56. this.Panel.Size = new System.Drawing.Size(334, 25);
  57. this.Panel.TabIndex = 0;
  58. //
  59. // Toggle
  60. //
  61. this.Toggle.AutoSize = true;
  62. this.Toggle.ForeColor = System.Drawing.Color.White;
  63. this.Toggle.Location = new System.Drawing.Point(0, 1);
  64. this.Toggle.MinimumSize = new System.Drawing.Size(46, 22);
  65. this.Toggle.Name = "Toggle";
  66. this.Toggle.Size = new System.Drawing.Size(46, 22);
  67. this.Toggle.TabIndex = 2;
  68. this.Toggle.UseVisualStyleBackColor = true;
  69. this.Toggle.CheckedChanged += new System.EventHandler(this.Toggle_CheckedChanged);
  70. //
  71. // ToggleCard
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  75. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  76. this.Controls.Add(this.Panel);
  77. this.DoubleBuffered = true;
  78. this.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  79. this.ForeColor = System.Drawing.Color.White;
  80. this.Name = "ToggleCard";
  81. this.Size = new System.Drawing.Size(334, 25);
  82. this.Panel.ResumeLayout(false);
  83. this.Panel.PerformLayout();
  84. this.ResumeLayout(false);
  85. }
  86. #endregion
  87. private System.Windows.Forms.Panel Panel;
  88. internal System.Windows.Forms.Label Label;
  89. internal MoonToggle Toggle;
  90. }
  91. }