I am working with a Universal Windows application and using datagrid which i found here Mytoolkit Datgrid But I have to put an static image in a column and on that image click i have to perform an action. How can I do this?
How to display an image in UWP data grid column
1.6k Views Asked by Archana At
3
There are 3 best solutions below
1

Just edit data template and insert image inside where you want to see it:
<DataTemplate>
<StackPanel Margin="10,10,10,5"
d:DataContext="{d:DesignInstance Type=models:Person}">
<Image Source="lalala.jpg" Click="Image_Clicked" />
<TextBlock Text="{Binding Firstname}" />
<TextBlock Text="{Binding Lastname}" />
</StackPanel>
</DataTemplate>
1

Add this code in Page Resources.
<DataTemplate x:Key="ImageTemplate">
<StackPanel Width="20" Height="30" Tapped="StackPanel_Tapped" >
<Image Name="VoidImage" Source="/Images/delete.png"></Image>
</StackPanel>
</DataTemplate>
and grid column like this..
<controls:DataGridTemplatedColumn CellTemplate="{StaticResource ImageTemplate}">
<controls:DataGridTemplatedColumn.Header>
<TextBlock Text="Cart Total" Foreground="Green" />
</controls:DataGridTemplatedColumn.Header>
</controls:DataGridTemplatedColumn>
In StackPanel_Tapped event we can perform the required action
First, to put a image in a column, you can for example do it like this:
As you can see that I used
DataGridTemplatedColumn
to show theImage
column in the header and each item.And by "click to perform an action" you mean the sort action which is built in this control? If yes, you can refer to the source code of DataGridTemplatedColumn.cs, the
Order
property is just like theBinding
in theDataGridTextColumn
, here in my sample, I used a fake string type property named "ImageUri" in the data modelPerson
.If no, you want to perform a click event by yourself on the Image, you can just add a
Tapped
event to theImage
control and handle it in the code behind for example: