假设您正在尝试设置标签的文本。通过这样做,您调用了一个函数 SetText(labelname, "texthere")。SetText 的“标题”是什么?
我正在努力:
private void SetText(object foo, string bar)
但这不起作用
编辑:我有这个:
private void SetText(Control thing, string text)
{
if (this.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
Invoke(d, new object[] { text });
}
else
{
thing.Text = text;
}
}
但它说明了无效的参数数量。我需要改变什么?