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 或类似的东西)制作图片。在 Windows Phone 上,这个问题是通过这种方式解决的:
var frameworkElement = new Button(); ..... var wrb = new WriteableBitmap(frameworkElement, null);
在 Windows 8 中没有 WriteableBitmap 这样的构造函数重载。
是否有类似的方法可以解决 Windows 8 的这个问题?
仅在 Windows 8.1 中可用
http://geoffwebbercross.blogspot.com/2013/06/windows-81-rendertargetbitmap.html