固定文档的 BitmapSource 到 UI 元素?

发布于 2024-12-13 09:10:51 字数 258 浏览 0 评论 0原文

我在 WPF 应用程序中有以下内容:

  1. 创建堆栈面板
  2. 从创建位图源 stackpanel
  3. 创建一个固定文档

因此,我尝试从步骤 2 转到步骤 3。固定文档仅接受 Children.Add 的 UIElement 对象。有没有办法从位图源获取固定文档接受的 UIElement(或其他对象)?是的,我意识到 Stackpanel 是一个 UIElement,我可以将其添加到我的文档中,但我更喜欢将其添加为图像。

I have the following in a WPF application:

  1. Create a stackpanel
  2. Create a bitmapsource from the
    stackpanel
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初与友歌 2024-12-20 09:10:51

我相信您正在寻找System.Windows.Controls.Image。给定 BitmapSource bs

Image anImage = new Image();
anImage.Source = bs;

应该可以实现从 2. 到 3. 的技巧。

I believe you are looking for System.Windows.Controls.Image. Given BitmapSource bs

Image anImage = new Image();
anImage.Source = bs;

should do the trick to get from 2. to 3.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文