gpt4 book ai didi

c# - 'textBox1_TextChanged_1' 没有重载匹配委托(delegate) 'System.Threading.TimerCallback

转载 作者:行者123 更新时间:2023-12-03 13:19:58 38 4
gpt4 key购买 nike

我想使用 System.Threading.Timer这样我就可以使用这个计时器来调用方法“CreateThread”,如下所示。

public void CreateThread()
{
th1 = new Thread(ChangeLabel);
th1.Start();
}

我在线上遇到错误:
public void textBox1_TextChanged_1(object sender, EventArgs e)
{
TimerCallback tcb = new TimerCallback(CreateThread); //This line is showing error
}

谁能解释一下是什么问题?

最佳答案

TimerCallback 期望 state委托(delegate)中的属性:

public void CreateThread(object state)
{
th1 = new Thread(ChangeLabel);
th1.Start();
}

MSDN :
public delegate void TimerCallback(
Object state
)

关于c# - 'textBox1_TextChanged_1' 没有重载匹配委托(delegate) 'System.Threading.TimerCallback,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23632992/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com