namespace text3
{
public delegate void del(string str);//创建委托类型
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
sudent stu1 = new sudent(); //实例化副线程
private void Form1_Load(object sender, EventArgs e)
{
stu1.sho = showmmm; //关联委托变量与方法
}
private void showmmm(string str) //创建方法
{
richTextBox1.AppendText(str);
}
private void button1_Click(object sender, EventArgs e)
{
stu1.sho("BAND BOY"); //副线程调用委托变量内的方法
}
}
public class sudent
{
public del sho;
}
}
10-17
08-16