gpt4 book ai didi

c# - 如何从静态方法更新控件?

转载 作者:太空狗 更新时间:2023-10-29 20:52:10 26 4
gpt4 key购买 nike

你好为什么我无法从静态方法访问表单(例如 ListBox)上的私有(private)控件?在这种情况下如何更新控件?

编辑 1.

我的代码:

ThreadStart thrSt = new ThreadStart(GetConnected);
Thread thr = new Thread(thrSt);
thr.Start();

static void GetConnected()
{
//update my ListBox
}

所以它必须是 void,没有参数并且是静态的,对吧?

编辑 2.

如果有人需要 WPF 中的解决方案,那么应该试试这个:

private void GetConnected()
{
myListBox.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Normal,
new Action(() =>
{
myListBox.Items.Add("something");
}
)
);
}

最佳答案

我在网上找到了另一个答案

在表单类中这样写:

static Form1 frm;

在表单构造函数中:

frm = this;

现在我们可以使用变量“frm”来访问表单上的所有控件。

静态方法中的某处:

frm.myListBox.Items.Add("something");

关于c# - 如何从静态方法更新控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4064906/

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