フォームから計算を行うスレッドを実行するだけなら async は必要無い、スレッドの終了を待つ await も必要ない。
Task.Run() で計算処理を別スレッドで実行して放置するだけ。
「Start」ボタンをクリックしたら、非同期で1秒毎にインクリメントしその結果を最後にMessageBoxに表示するサンプル。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
using System; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } private void btnExec_Click(object sender, EventArgs e) { Task.Run(() => { Increment(); }); } private void Increment() { int i = 0; while (i < 10) { i++; Thread.Sleep(1000); } MessageBox.Show(i.ToString()); } } } |
コメント