Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

39 righe
1007 B

  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;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using Learun.Application.TwoDevelopment.EvaluationTeach;
  12. namespace Quanjiang.DigitalScholl.Tools
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20. Thread mainthread = null;
  21. private void button1_Click(object sender, EventArgs e)
  22. {
  23. ThreadStart threadstart = new ThreadStart(TransferCoreData);
  24. mainthread = new Thread(threadstart);
  25. mainthread.Name = "main";
  26. mainthread.Start();
  27. //ask_MainIBLL.Clean("9d2191c4-a709-4a0f-b49b-7ad46667d4e9");
  28. }
  29. public void TransferCoreData()
  30. {
  31. FormProgress progress = new FormProgress();
  32. progress.ShowDialog();
  33. }
  34. }
  35. }