OptimizeForm.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace Optimizer
  2. {
  3. partial class OptimizeForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.dotter = new System.Windows.Forms.Timer(this.components);
  32. this.SuspendLayout();
  33. //
  34. // label1
  35. //
  36. this.label1.AutoSize = true;
  37. this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  38. this.label1.ForeColor = System.Drawing.Color.White;
  39. this.label1.Location = new System.Drawing.Point(39, 18);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(259, 35);
  42. this.label1.TabIndex = 0;
  43. this.label1.Tag = "themeable";
  44. this.label1.Text = "Applying, please wait";
  45. //
  46. // label2
  47. //
  48. this.label2.AutoSize = true;
  49. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 19F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  50. this.label2.ForeColor = System.Drawing.Color.White;
  51. this.label2.Location = new System.Drawing.Point(147, 53);
  52. this.label2.Name = "label2";
  53. this.label2.Size = new System.Drawing.Size(44, 45);
  54. this.label2.TabIndex = 1;
  55. this.label2.Text = "...";
  56. //
  57. // dotter
  58. //
  59. this.dotter.Interval = 500;
  60. this.dotter.Tick += new System.EventHandler(this.dotter_Tick);
  61. //
  62. // OptimizeHelper
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  66. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  67. this.ClientSize = new System.Drawing.Size(340, 115);
  68. this.ControlBox = false;
  69. this.Controls.Add(this.label2);
  70. this.Controls.Add(this.label1);
  71. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
  72. this.ForeColor = System.Drawing.Color.White;
  73. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  74. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  75. this.MaximizeBox = false;
  76. this.MinimizeBox = false;
  77. this.Name = "OptimizeHelper";
  78. this.ShowIcon = false;
  79. this.ShowInTaskbar = false;
  80. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  81. this.Load += new System.EventHandler(this.Helper_Load);
  82. this.ResumeLayout(false);
  83. this.PerformLayout();
  84. }
  85. #endregion
  86. private System.Windows.Forms.Label label1;
  87. private System.Windows.Forms.Label label2;
  88. private System.Windows.Forms.Timer dotter;
  89. }
  90. }