
****
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 线程多次调用
{
public partial class Form1 : Form
{
string m_aca;
public Form1()
{
InitializeComponent();
timer1.Interval = 100;//单位mS
timer1.Start();
}
private void button1_Click(object sender, EventArgs e)
{
var t1 = new Task(() => TaskMethod(textBox1.Text));
t1.Start();
Task.WaitAll(t1);//等待所有任务结束
}
void TaskMethod(string ddd)//线程的函数
{
m_aca = ddd;
}
private void timer1_Tick(object sender, EventArgs e)
{
textBox2.Text = m_aca;
}
}
}
运行效果
在textBox1 里面写入的String 内容,
然后按下按钮
然后 就会在textBox2 显示同样的内容
***
大致解释一下
本文探讨了一个Windows Forms应用程序,如何通过线程实现了多个任务并行执行,其中TaskMethod函数处理输入字符串,Timer1定时更新textBox2的内容。理解了如何利用异步编程和任务等待来协调线程交互。
687

被折叠的 条评论
为什么被折叠?



