123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- namespace Optimizer
- {
- partial class AboutForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.l1 = new System.Windows.Forms.Label();
- this.l2 = new System.Windows.Forms.LinkLabel();
- this.t1 = new System.Windows.Forms.Timer(this.components);
- this.t2 = new System.Windows.Forms.Timer(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.SuspendLayout();
- //
- // pictureBox1
- //
- this.pictureBox1.Image = global::Optimizer.Properties.Resources.logo;
- this.pictureBox1.Location = new System.Drawing.Point(10, 10);
- this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(86, 86);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 2;
- this.pictureBox1.TabStop = false;
- //
- // l1
- //
- this.l1.AutoSize = true;
- this.l1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.l1.ForeColor = System.Drawing.Color.White;
- this.l1.Location = new System.Drawing.Point(102, 10);
- this.l1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.l1.Name = "l1";
- this.l1.Size = new System.Drawing.Size(0, 28);
- this.l1.TabIndex = 3;
- //
- // l2
- //
- this.l2.AutoSize = true;
- this.l2.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.l2.ForeColor = System.Drawing.Color.DodgerBlue;
- this.l2.Location = new System.Drawing.Point(102, 68);
- this.l2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.l2.Name = "l2";
- this.l2.Size = new System.Drawing.Size(0, 28);
- this.l2.TabIndex = 35;
- this.l2.Tag = "themeable";
- this.l2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.l2_LinkClicked);
- //
- // t1
- //
- this.t1.Interval = 350;
- this.t1.Tick += new System.EventHandler(this.t1_Tick);
- //
- // t2
- //
- this.t2.Interval = 350;
- this.t2.Tick += new System.EventHandler(this.t2_Tick);
- //
- // AboutForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
- this.ClientSize = new System.Drawing.Size(387, 108);
- this.Controls.Add(this.l2);
- this.Controls.Add(this.l1);
- this.Controls.Add(this.pictureBox1);
- this.ForeColor = System.Drawing.Color.White;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "AboutForm";
- this.ShowIcon = false;
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Optimizer";
- this.Load += new System.EventHandler(this.About_Load);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label l1;
- private System.Windows.Forms.LinkLabel l2;
- private System.Windows.Forms.Timer t1;
- private System.Windows.Forms.Timer t2;
- }
- }
|