mirror of
https://github.com/psforever/GameLauncher.git
synced 2026-04-28 07:35:22 +00:00
Add icons and improve version display
This commit is contained in:
parent
fce71df0f3
commit
9f280093c2
11 changed files with 77 additions and 21 deletions
32
PSLauncher/AboutBox1.Designer.cs
generated
32
PSLauncher/AboutBox1.Designer.cs
generated
|
|
@ -32,13 +32,15 @@
|
|||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
||||
this.versionInfo = new System.Windows.Forms.TextBox();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// okButton
|
||||
//
|
||||
this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
||||
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.okButton.Location = new System.Drawing.Point(135, 107);
|
||||
this.okButton.Location = new System.Drawing.Point(135, 200);
|
||||
this.okButton.Name = "okButton";
|
||||
this.okButton.Size = new System.Drawing.Size(75, 23);
|
||||
this.okButton.TabIndex = 25;
|
||||
|
|
@ -49,17 +51,17 @@
|
|||
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.label1.Location = new System.Drawing.Point(9, 9);
|
||||
this.label1.Location = new System.Drawing.Point(9, 97);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(328, 23);
|
||||
this.label1.TabIndex = 26;
|
||||
this.label1.Text = "PS1 GameLauncher";
|
||||
this.label1.Text = "PSForever Launcher";
|
||||
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.label2.Location = new System.Drawing.Point(9, 32);
|
||||
this.label2.Location = new System.Drawing.Point(9, 120);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(328, 23);
|
||||
this.label2.TabIndex = 27;
|
||||
|
|
@ -70,7 +72,7 @@
|
|||
// linkLabel1
|
||||
//
|
||||
this.linkLabel1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.linkLabel1.Location = new System.Drawing.Point(9, 55);
|
||||
this.linkLabel1.Location = new System.Drawing.Point(9, 143);
|
||||
this.linkLabel1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
|
||||
this.linkLabel1.Name = "linkLabel1";
|
||||
this.linkLabel1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 5);
|
||||
|
|
@ -85,7 +87,7 @@
|
|||
//
|
||||
this.versionInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.versionInfo.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.versionInfo.Location = new System.Drawing.Point(9, 77);
|
||||
this.versionInfo.Location = new System.Drawing.Point(9, 165);
|
||||
this.versionInfo.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
|
||||
this.versionInfo.Name = "versionInfo";
|
||||
this.versionInfo.ReadOnly = true;
|
||||
|
|
@ -95,16 +97,28 @@
|
|||
this.versionInfo.Text = "Version 1.x.x.x";
|
||||
this.versionInfo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pictureBox1.Image = global::PSLauncher.Properties.Resources.vector_logo_psforever;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(9, 9);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(328, 88);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox1.TabIndex = 30;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// About
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(346, 142);
|
||||
this.ClientSize = new System.Drawing.Size(346, 235);
|
||||
this.Controls.Add(this.versionInfo);
|
||||
this.Controls.Add(this.linkLabel1);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.okButton);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
|
|
@ -113,7 +127,8 @@
|
|||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "About PS1 GameLauncher";
|
||||
this.Text = "About PSForever Launcher";
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
|
|
@ -126,5 +141,6 @@
|
|||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.LinkLabel linkLabel1;
|
||||
private System.Windows.Forms.TextBox versionInfo;
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue