我想在 Windows Phone 应用程序中有一个动画全景控制背景。
我有一个算法可以不断地将所需图像绘制到 WritableBitmap 上。
我已将全景图的背景属性绑定到 ViewModels 的 BackgroundImageBrush 属性。
然后在我的 ViewModel 的构建时我分配
BackgroundImageBrush = new ImageBrush {ImageSource = _outputWriteableBitmap};
我在输出中没有发现绑定错误,当我使用调试器检查绑定时,我得到了 BackgroundImageBrush.ImageSource 与 WritableBitmap 的正确链接。
每次我重绘 _outputWriteableBitmap 时,我都会调用 Invalidate。
我的全景背景仍然是空白的!
我在理论上做错了什么?甚至可以在 Windows Phone 的全景图中拥有动画背景吗?
谢谢。