mirror of
https://github.com/4sval/FModel.git
synced 2026-03-21 17:24:26 -05:00
nothing really important
This commit is contained in:
parent
7689100581
commit
e6a66cb020
1
FModel/PAKWindow.Designer.cs
generated
1
FModel/PAKWindow.Designer.cs
generated
|
|
@ -240,6 +240,7 @@
|
|||
this.Name = "PAKWindow";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "FModel";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PAKWindow_FormClosing);
|
||||
this.Load += new System.EventHandler(this.PAKWindow_Load);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
|
|
|
|||
|
|
@ -128,6 +128,10 @@ namespace FModel
|
|||
centeredStringLine.LineAlignment = StringAlignment.Center;
|
||||
centeredStringLine.Alignment = StringAlignment.Center;
|
||||
} //EVERYTHING TO SET WHEN APP IS STARTING
|
||||
private void PAKWindow_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
Environment.Exit(Environment.ExitCode);
|
||||
} //STOP EVERYTHING WHEN FORM IS CLOSING
|
||||
|
||||
private void CreatePath(TreeNodeCollection nodeList, string path)
|
||||
{
|
||||
|
|
@ -566,6 +570,7 @@ namespace FModel
|
|||
}
|
||||
|
||||
ExtractButton.Enabled = false;
|
||||
SaveImageButton.Enabled = false;
|
||||
for (int i = 0; i < SelectedArray.Length; i++)
|
||||
{
|
||||
string currentItem = SelectedArray[i].ToString();
|
||||
|
|
@ -1240,6 +1245,7 @@ namespace FModel
|
|||
}
|
||||
}
|
||||
ExtractButton.Enabled = true;
|
||||
SaveImageButton.Enabled = true;
|
||||
|
||||
stopWatch.Stop();
|
||||
TimeSpan ts = stopWatch.Elapsed;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user