如何从另一个线程调用 ImageList.Images.Clear() ?

发布于 2025-01-03 09:41:15 字数 834 浏览 0 评论 0原文

如何从另一个线程调用 ImageList.Images.Clear() ?我尝试执行类似的功能

 private delegate void SetControlPropertyThreadSafeDelegate(Control control, string propertyName, object propertyValue);

    public static void SetControlPropertyThreadSafe(Control control, string propertyName, object propertyValue)
    {
        if (control.InvokeRequired)
        {
            control.Invoke(new SetControlPropertyThreadSafeDelegate(SetControlPropertyThreadSafe), new object[] { control, propertyName, propertyValue });
        }
        else
        {
            control.GetType().InvokeMember(propertyName, System.Reflection.BindingFlags.SetProperty, null, control, new object[] { propertyValue });
        }
    }

,但 ImageList 没有 InvokeRequired 或 Invoke,而且我不想设置属性,我只想调用

ImageList.Images.Clear()

How do I call ImageList.Images.Clear() from another thread? I tried to do a function like

 private delegate void SetControlPropertyThreadSafeDelegate(Control control, string propertyName, object propertyValue);

    public static void SetControlPropertyThreadSafe(Control control, string propertyName, object propertyValue)
    {
        if (control.InvokeRequired)
        {
            control.Invoke(new SetControlPropertyThreadSafeDelegate(SetControlPropertyThreadSafe), new object[] { control, propertyName, propertyValue });
        }
        else
        {
            control.GetType().InvokeMember(propertyName, System.Reflection.BindingFlags.SetProperty, null, control, new object[] { propertyValue });
        }
    }

but ImageList doesn't have an InvokeRequired or Invoke, plus I don't want to set a property, I just want to call

ImageList.Images.Clear()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷夜 2025-01-10 09:41:15

您可以使用它:

System.Threading.SynchronizationContext.Current.Post(o => ImageList.Images.Clear(), null);

这将异步调用 UI 线程上的委托。如果您需要立即清除列表,请将“发布”替换为“发送”。当然,您还需要对要清除的 ImageList 的引用。

You can use this:

System.Threading.SynchronizationContext.Current.Post(o => ImageList.Images.Clear(), null);

This will asynchronously invoke the delegate on the UI thread. If you need to immediately clear the list replace Post with Send. Of course you also need the reference to the ImageList you want to clear.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文