Hello,
I have a case when the grid view must display plenty of data in a cell (in a log display). To avoid having very high rows, I have defined a template for the cell, as following:
<tk:GridViewDataColumn.CellTemplate> <DataTemplate> <ScrollViewer Background="Transparent" BorderThickness="0" Margin="0 1" MaxHeight="150"> <TextBlock Text="{Binding Request}" /> </ScrollViewer> </DataTemplate></tk:GridViewDataColumn.CellTemplate>
The problem is that, when I click on the cell, the row is not selected.
