0

我正在尝试从线程更新 form.text 。基本上线程需要用当前时间更新form.text。我的代码如下所示

UpdateText("My Monitor (Last Updated " + DateTime.Now.ToString("HH:mm:ss tt") + ")", Form1.ActiveForm);

方法如下

    void UpdateText(String s, Control c)
    {
        if (c.InvokeRequired)
        {

            this.BeginInvoke(new MethodInvoker(() => UpdateText(s, c)));

        }
        else
        {
            c.Text = s;
        }
    }

只要主应用程序窗口处于活动状态,代码就可以工作。如果应用程序变为非活动状态,则会收到错误消息“对象引用未设置为对象的实例”

4

2 回答 2

1

你在打电话Form1.ActiveForm

ActiveForm:表示当前活动表单的表单,如果没有活动表单,则为 null。

如果Form不活动,自然会是null。对您的表单使用不同的引用。如果您从表单中调用它,请使用this.

于 2013-02-14T16:33:00.873 回答
0

将引用保存ActiveForm在私有字段中,并在Thread

Control activeControl;
private void start_new_thread()
{
    active = Form1.ActiveForm;
    // start work under thread
}

private void work_under_thread(object state)
{

    //blocking works
    // update here
    UpdateText("My Monitor (Last Updated " + DateTime.Now.ToString("HH:mm:ss tt") + ")", activeControl);

}
于 2013-02-14T16:37:26.707 回答