2
0

ToggleCard.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.Location = new System.Drawing.Point(52, 1);
  39. this.Label.Name = "Label";
  40. this.Label.Size = new System.Drawing.Size(45, 19);
  41. this.Label.TabIndex = 1;
  42. this.Label.Text = "label1";
  43. this.Label.Click += new System.EventHandler(this.Label_Click);
  44. this.Label.MouseEnter += new System.EventHandler(this.Label_MouseEnter);
  45. this.Label.MouseLeave += new System.EventHandler(this.Label_MouseLeave);
  46. this.Label.MouseHover += new System.EventHandler(this.Label_MouseHover);
  47. //
  48. // Panel
  49. //
  50. this.Panel.Controls.Add(this.Label);
  51. this.Panel.Controls.Add(this.Toggle);
  52. this.Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  53. this.Panel.Location = new System.Drawing.Point(0, 0);
  54. this.Panel.Name = "Panel";
  55. this.Panel.Size = new System.Drawing.Size(334, 25);
  56. this.Panel.TabIndex = 0;
  57. //
  58. // Toggle
  59. //
  60. this.Toggle.AutoSize = true;
  61. this.Toggle.ForeColor = System.Drawing.Color.White;
  62. this.Toggle.Location = new System.Drawing.Point(0, 1);
  63. this.Toggle.MinimumSize = new System.Drawing.Size(46, 22);
  64. this.Toggle.Name = "Toggle";
  65. this.Toggle.Size = new System.Drawing.Size(46, 22);
  66. this.Toggle.TabIndex = 2;
  67. this.Toggle.UseVisualStyleBackColor = true;
  68. this.Toggle.CheckedChanged += new System.EventHandler(this.Toggle_CheckedChanged);
  69. //
  70. // ToggleCard
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  74. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  75. this.Controls.Add(this.Panel);
  76. this.DoubleBuffered = true;
  77. this.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  78. this.ForeColor = System.Drawing.Color.White;
  79. this.Name = "ToggleCard";
  80. this.Size = new System.Drawing.Size(334, 25);
  81. this.Panel.ResumeLayout(false);
  82. this.Panel.PerformLayout();
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. private System.Windows.Forms.Panel Panel;
  87. protected internal System.Windows.Forms.Label Label;
  88. protected internal MoonToggle Toggle;
  89. }
  90. }