nothing really important

This commit is contained in:
Asval 2019-03-11 14:08:31 +01:00
parent 7689100581
commit e6a66cb020
3 changed files with 9 additions and 1 deletions

View File

@ -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();

View File

@ -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;

View File

@ -47,7 +47,8 @@
## TODO
- [ ] Improve speed
- [x] Multithreading (kinda weird atm i agree)
- [x] Multithreading
- [x] Filter for the items ListBox
- [ ] Stop button while extracting
- [ ] Support for meshes
- [ ] Support for animations