ToggleCard.Designer.cs 3.5 KB

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