Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在后台代理中创建更新动态磁贴所需的位图的好方法是什么?在 UI 线程中,您使用 writeableBitmap 类,但这在非 ui 线程中不起作用。后台代理中有很多图块示例,但它们都使用以前在 UI 中创建的位图。有任何想法吗?谢谢。
这在非 ui 线程中不起作用
WriteableBitmap 不需要 UI,它只需要一个 Dispatcher。后台代理有。
有关示例,请参阅此答案。