我在WPF应用程序中有以下内容:
所以,我正试图从第2步到第3步.NixedDocuments只接受Children.Add的UIElement对象。有没有办法从bitmapsource获取一个将被FixedDocuemnt接受的UIElement(或其他一些对象)?是的,我意识到Stackpanel是一个UIElement,我可以将它添加到我的文档中,但我更喜欢将其添加为图像。
答案 0 :(得分:1)
我相信你正在寻找System.Windows.Controls.Image
。给定BitmapSource bs
Image anImage = new Image();
anImage.Source = bs;
应该做到从2到3的技巧。