0

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

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

所以,我试图从第 2 步到第 3 步。FixedDocuments 只接受 Children.Add 的 UIElement 对象。有没有办法从位图源获取将被 FixedDocuemnt 接受的 UIElement(或其他对象)?是的,我意识到 Stackpanel 是一个 UIElement,我可以将它添加到我的文档中,但我更喜欢将它添加为图像。

4

1 回答 1

1

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

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

应该从 2. 到 3.

于 2012-01-25T19:16:47.063 回答