gpt4 book ai didi

c# - WPF 线程和 Dispatcher.Invoke

转载 作者:行者123 更新时间:2023-12-03 13:20:01 24 4
gpt4 key购买 nike

我在 (*) 行收到此错误:

An unhandled exception of type 'System.ArgumentException' occurred in PresentationCore.dll Additional information: This API was accessed with arguments from the wrong context.



奇怪的是它通过了上面的线。
我的 City 元素像 Image 一样加载到 MainWindow.xaml 中。

有人有想法吗?
public class City : FrameworkElement
{
VisualCollection _buildingsList;

public City()
{
Thread t = new Thread(new ThreadStart(Draw));
t.start();
}

private void Draw()
{
DrawingVisual building = new DrawingVisual();

// [...]

Dispatcher.Invoke(DispatcherPriority.Normal, new Action(() =>
{
_buildingsList.Clear();
_buildingsList.Add(building); // (*)
}));
}

protected override Visual GetVisualChild(int index)
{
return _buildingsList[index];
}

protected override int VisualChildrenCount
{
get { return _buildingsList.Count; }
}
}

最佳答案

所有 UI 对象都应仅在 UI 线程上添加和创建。

在您的情况下,您正在后台线程上创建 DrawingVisual 并将其添加到 UI 线程上的 VisualCollection 中。您还应该在 UI 线程上创建 DrawingVisual。

Dispatcher.Invoke(DispatcherPriority.Normal, new Action(() =>
{
DrawingVisual building = new DrawingVisual(); <-- Create on UI thread.
_buildingsList.Clear();
_buildingsList.Add(building);
}));

关于c# - WPF 线程和 Dispatcher.Invoke,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22423204/

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