在System.Windows.Controls.Image控件中显示System.Drawing.Bitmap对象

时间:2011-06-03 17:56:19

标签: c# wpf image xaml bitmapimage

我有一个图像控件:

<Image Height="209" HorizontalAlignment="Left" Margin="66,74,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="200" />

在wpf应用程序中。我导入了一个将视频转换为位图图像的库,我试图将这些位图放在图像控制中。有一个方法返回System.Drawing.Bitmap对象,我想在image1中显示该位图。我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

您需要先将其转换为某种ImageSource。请参阅this question

您可以使用ValueConverter在绑定中动态执行此操作。