This is what I have
<GridViewColumn Header="Status" >
<GridViewColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Image}" Width="22" Height="22"/>
</StackPanel>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
Image is a System.Drawing.Bitmap image that I am getting from a Namespace.Resources.
I cannot get any image to show up in column no matter what I try.
You need to convert from the
System.Drawing.Bitmapinto an ImageSource, which is what WPF uses for images. You can do this via Imaging.CreateBitmapSourceFromHBitmap: