固定文档的 BitmapSource 到 UI 元素?
我在 WPF 应用程序中有以下内容:
- 创建堆栈面板
- 从创建位图源 stackpanel
- 创建一个固定文档
因此,我尝试从步骤 2 转到步骤 3。固定文档仅接受 Children.Add 的 UIElement 对象。有没有办法从位图源获取固定文档接受的 UIElement(或其他对象)?是的,我意识到 Stackpanel 是一个 UIElement,我可以将其添加到我的文档中,但我更喜欢将其添加为图像。
I have the following in a WPF application:
- Create a stackpanel
- Create a bitmapsource from the
stackpanel - Create a FixedDocument
So, I'm trying to get from step 2 to step 3. FixedDocuments only accept UIElement objects for Children.Add. Is there a way to get from a bitmapsource to a UIElement (or some other object) that will be accepted by a FixedDocuemnt? Yes, I realize that a Stackpanel is a UIElement and I could add that to my document but I prefer to add it as an image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您正在寻找
System.Windows.Controls.Image
。给定BitmapSource bs
应该可以实现从 2. 到 3. 的技巧。
I believe you are looking for
System.Windows.Controls.Image
. GivenBitmapSource bs
should do the trick to get from 2. to 3.