AboutForm.Designer.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. namespace Optimizer
  2. {
  3. partial class AboutForm
  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.pictureBox1 = new System.Windows.Forms.PictureBox();
  30. this.l1 = new System.Windows.Forms.Label();
  31. this.l2 = new System.Windows.Forms.LinkLabel();
  32. this.t1 = new System.Windows.Forms.Timer(this.components);
  33. this.t2 = new System.Windows.Forms.Timer(this.components);
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // pictureBox1
  38. //
  39. this.pictureBox1.Image = global::Optimizer.Properties.Resources.logo;
  40. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  41. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  42. this.pictureBox1.Name = "pictureBox1";
  43. this.pictureBox1.Size = new System.Drawing.Size(86, 86);
  44. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  45. this.pictureBox1.TabIndex = 2;
  46. this.pictureBox1.TabStop = false;
  47. //
  48. // l1
  49. //
  50. this.l1.AutoSize = true;
  51. this.l1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  52. this.l1.ForeColor = System.Drawing.Color.White;
  53. this.l1.Location = new System.Drawing.Point(102, 10);
  54. this.l1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  55. this.l1.Name = "l1";
  56. this.l1.Size = new System.Drawing.Size(0, 28);
  57. this.l1.TabIndex = 3;
  58. //
  59. // l2
  60. //
  61. this.l2.AutoSize = true;
  62. this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  63. this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
  64. this.l2.Location = new System.Drawing.Point(102, 68);
  65. this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  66. this.l2.Name = "l2";
  67. this.l2.Size = new System.Drawing.Size(0, 28);
  68. this.l2.TabIndex = 35;
  69. this.l2.Tag = "themeable";
  70. this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
  71. //
  72. // t1
  73. //
  74. this.t1.Interval = 350;
  75. this.t1.Tick += new System.EventHandler(this.t1_Tick);
  76. //
  77. // t2
  78. //
  79. this.t2.Interval = 350;
  80. this.t2.Tick += new System.EventHandler(this.t2_Tick);
  81. //
  82. // AboutForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  86. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  87. this.ClientSize = new System.Drawing.Size(387, 108);
  88. this.Controls.Add(this.l2);
  89. this.Controls.Add(this.l1);
  90. this.Controls.Add(this.pictureBox1);
  91. this.ForeColor = System.Drawing.Color.White;
  92. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  93. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  94. this.MaximizeBox = false;
  95. this.MinimizeBox = false;
  96. this.Name = "AboutForm";
  97. this.ShowIcon = false;
  98. this.ShowInTaskbar = false;
  99. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  100. this.Text = "Optimizer";
  101. this.Load += new System.EventHandler(this.About_Load);
  102. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.PictureBox pictureBox1;
  108. private System.Windows.Forms.Label l1;
  109. private System.Windows.Forms.LinkLabel l2;
  110. private System.Windows.Forms.Timer t1;
  111. private System.Windows.Forms.Timer t2;
  112. }
  113. }