namespace VoxCharger { partial class AboutForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm)); this.ProfilePictureBox = new System.Windows.Forms.PictureBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.EmailLinkLabel = new System.Windows.Forms.LinkLabel(); this.label4 = new System.Windows.Forms.Label(); this.CloseButton = new System.Windows.Forms.Button(); this.GithubLinkLabel = new System.Windows.Forms.LinkLabel(); ((System.ComponentModel.ISupportInitialize)(this.ProfilePictureBox)).BeginInit(); this.SuspendLayout(); // // ProfilePictureBox // this.ProfilePictureBox.Image = ((System.Drawing.Image)(resources.GetObject("ProfilePictureBox.Image"))); this.ProfilePictureBox.Location = new System.Drawing.Point(21, 21); this.ProfilePictureBox.Name = "ProfilePictureBox"; this.ProfilePictureBox.Size = new System.Drawing.Size(80, 80); this.ProfilePictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.ProfilePictureBox.TabIndex = 0; this.ProfilePictureBox.TabStop = false; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(107, 21); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 13); this.label1.TabIndex = 1; this.label1.Text = "VoxCharger"; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(107, 36); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(82, 13); this.label2.TabIndex = 2; this.label2.Text = "Version 0.9.12c"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(107, 51); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(131, 13); this.label3.TabIndex = 3; this.label3.Text = "Copyright © 2022 - CXO2"; // // EmailLinkLabel // this.EmailLinkLabel.AutoSize = true; this.EmailLinkLabel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.EmailLinkLabel.Location = new System.Drawing.Point(107, 67); this.EmailLinkLabel.Name = "EmailLinkLabel"; this.EmailLinkLabel.Size = new System.Drawing.Size(87, 13); this.EmailLinkLabel.TabIndex = 4; this.EmailLinkLabel.TabStop = true; this.EmailLinkLabel.Text = "o2jam@cxo2.me"; this.EmailLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnEmailLinkLabelLinkClicked); // // label4 // this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.Location = new System.Drawing.Point(21, 118); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(250, 26); this.label4.TabIndex = 5; this.label4.Text = "This freeware program.\r\nUse at your own risk with no warranty of any kind.\r\n"; // // CloseButton // this.CloseButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.CloseButton.Location = new System.Drawing.Point(21, 151); this.CloseButton.Name = "CloseButton"; this.CloseButton.Size = new System.Drawing.Size(292, 26); this.CloseButton.TabIndex = 6; this.CloseButton.Text = "OK"; this.CloseButton.UseVisualStyleBackColor = true; this.CloseButton.Click += new System.EventHandler(this.OnCloseButtonClick); // // GithubLinkLabel // this.GithubLinkLabel.AutoSize = true; this.GithubLinkLabel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.GithubLinkLabel.Location = new System.Drawing.Point(107, 83); this.GithubLinkLabel.Name = "GithubLinkLabel"; this.GithubLinkLabel.Size = new System.Drawing.Size(212, 13); this.GithubLinkLabel.TabIndex = 7; this.GithubLinkLabel.TabStop = true; this.GithubLinkLabel.Text = "https://github.com/SirusDoma/VoxCharger"; this.GithubLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnGithubLinkLabelLinkClicked); // // AboutForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(334, 189); this.Controls.Add(this.GithubLinkLabel); this.Controls.Add(this.CloseButton); this.Controls.Add(this.label4); this.Controls.Add(this.EmailLinkLabel); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.ProfilePictureBox); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Location = new System.Drawing.Point(15, 15); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "AboutForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; ((System.ComponentModel.ISupportInitialize)(this.ProfilePictureBox)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.LinkLabel GithubLinkLabel; #endregion private System.Windows.Forms.PictureBox ProfilePictureBox; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.LinkLabel EmailLinkLabel; private System.Windows.Forms.Label label4; private System.Windows.Forms.Button CloseButton; } }