Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
3.67/5 (2 votes)
See more:
How to add image to datagrid in WPF with C#, i have stored the paths of images in database.
Design is like this:
----------------------------------
Name| Roll| Marks|Image
--------------------------------
A   | 1    |90   |img1.jpg
B   | 2    |80   |img2.jpg

*******************************************
I am using this to fill the data into dataGrid:
dataGrid2.ItemsSource = ds.Tables["Table1"].DefaultView;


DataGrid  SelectionMode="Extended"  SelectionUnit="Cell" IsReadOnly="True"  Name="dataGrid2" VerticalAlignment="Top" Height="147" Margin="26,130,63,0" AlternatingRowBackground="#FFAE65AE" AreRowDetailsFrozen="True" AlternationCount="0" AutoGenerateColumns="False" Background="{x:Null}">
            <DataGrid.Columns>
                <DataGridTextColumn Binding="{Binding Name}"  Header="Name"  />
 <DataGridTextColumn Binding="{Binding Roll}"  Header="Roll"  />
 <DataGridTextColumn Binding="{Binding Marks}"  Header="Marks"  />
               
                <DataGridTemplateColumn Header="Image">
                    <DataGridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <Image Height="10" Width="10" Stretch="Uniform"  >  </Image>
                        </DataTemplate>
                    </DataGridTemplateColumn.CellTemplate>
                </DataGridTemplateColumn>
            </DataGrid.Columns>
        </DataGrid>


what to do next ? when i searched i found something like this IValueConverter ,but i don't understand that code :(
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900