Rename form titles, Fix allCheckBox
This commit is contained in:
parent
7d79a9e15d
commit
a666f34634
6 changed files with 11 additions and 8 deletions
|
@ -6,6 +6,7 @@
|
|||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ApplicationIcon>ini.ico</ApplicationIcon>
|
||||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||||
<Version>1.0.1</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
|
|
2
CreamInstaller/InstallForm.Designer.cs
generated
2
CreamInstaller/InstallForm.Designer.cs
generated
|
@ -128,7 +128,7 @@ namespace CreamInstaller
|
|||
this.MinimumSize = new System.Drawing.Size(500, 300);
|
||||
this.Name = "InstallForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "CreamAPI Downloader & Installer";
|
||||
this.Text = "InstallForm";
|
||||
this.TopMost = true;
|
||||
this.Load += new System.EventHandler(this.OnLoad);
|
||||
this.ResumeLayout(false);
|
||||
|
|
|
@ -15,6 +15,7 @@ namespace CreamInstaller
|
|||
{
|
||||
InitializeComponent();
|
||||
Program.InstallForm = this;
|
||||
Text = Program.ApplicationName;
|
||||
}
|
||||
|
||||
public void UpdateProgress(int progress)
|
||||
|
|
|
@ -11,9 +11,8 @@ namespace CreamInstaller
|
|||
{
|
||||
public static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
public static string ApplicationName = "CreamInstaller v" + Application.ProductVersion + ": CreamAPI Downloader & Installer";
|
||||
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
|
|
9
CreamInstaller/SelectForm.Designer.cs
generated
9
CreamInstaller/SelectForm.Designer.cs
generated
|
@ -78,6 +78,7 @@ namespace CreamInstaller
|
|||
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.groupBox1.Controls.Add(this.allCheckBox);
|
||||
this.groupBox1.Controls.Add(this.flowLayoutPanel1);
|
||||
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
|
@ -88,11 +89,12 @@ namespace CreamInstaller
|
|||
//
|
||||
// allCheckBox
|
||||
//
|
||||
this.allCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.allCheckBox.AutoSize = true;
|
||||
this.allCheckBox.Checked = true;
|
||||
this.allCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.allCheckBox.Enabled = false;
|
||||
this.allCheckBox.Location = new System.Drawing.Point(276, 257);
|
||||
this.allCheckBox.Location = new System.Drawing.Point(414, 0);
|
||||
this.allCheckBox.Name = "allCheckBox";
|
||||
this.allCheckBox.Size = new System.Drawing.Size(40, 19);
|
||||
this.allCheckBox.TabIndex = 0;
|
||||
|
@ -135,7 +137,6 @@ namespace CreamInstaller
|
|||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.CancelButton = this.cancelButton;
|
||||
this.ClientSize = new System.Drawing.Size(484, 289);
|
||||
this.Controls.Add(this.allCheckBox);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Controls.Add(this.progressBar1);
|
||||
|
@ -149,12 +150,12 @@ namespace CreamInstaller
|
|||
this.MinimumSize = new System.Drawing.Size(500, 328);
|
||||
this.Name = "SelectForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "CreamAPI Downloader & Installer";
|
||||
this.Text = "SelectForm";
|
||||
this.TopMost = true;
|
||||
this.Load += new System.EventHandler(this.OnLoad);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@ namespace CreamInstaller
|
|||
{
|
||||
InitializeComponent();
|
||||
Program.SelectForm = this;
|
||||
Text = Program.ApplicationName;
|
||||
}
|
||||
|
||||
private List<string> gameLibraryDirectories;
|
||||
|
|
Loading…
Reference in a new issue