我想在我的表单中的特定时间的标签中显示文本,这是我到目前为止尝试的代码:
private void ShowTextForParticularTime(String caption)
{
Timer t = new Timer { Interval = 2000, Enabled = true };
t.Tick += new EventHandler(OnTimerEvent(caption));
}
private void OnTimerEvent(object sender, EventArgs e,String caption)
{
barStaticItem3.Caption = caption;
}
我的问题是如何将“标题”参数设置为 OnTimerEvent 方法,因为我编写的代码不起作用它给了我这个错误:
方法“OnTimerEvent”没有重载需要“1”个参数