ProcessBar.cs 674 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace OTSPartA_STDEditor
  11. {
  12. public partial class ProcessBar : Form
  13. {
  14. Language lan;
  15. public ProcessBar()
  16. {
  17. InitializeComponent();
  18. lan = new Language(this);
  19. }
  20. public void worker_RunWorkerCompleted(object sender,RunWorkerCompletedEventArgs e)
  21. {
  22. this.Close();
  23. }
  24. private void ProcessBar_Load(object sender, EventArgs e)
  25. {
  26. }
  27. }
  28. }