gpt4 book ai didi

c# - InvokeRequired 是必需的吗?

转载 作者:行者123 更新时间:2023-11-30 19:59:23 32 4
gpt4 key购买 nike

<分区>

我的同事喜欢这样做

if (!listbox1.InvokeRequired)
listbox1.Items.Add(Container.error_message);
else
listbox1.Invoke((MethodInvoker)delegate
{
listbox1.Items.Add(Container.error_message);
});

为什么他要检查InvokedRequired?只使用这个语句会更好吗?

    listbox1.Invoke((MethodInvoker)delegate
{
listbox1.Items.Add(Container.error_message);
});

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