I have a datagrid placed inside a scatterview in WPF. I cant touch and select a row from the datagrid. In the touchdown event, its returning the value in the selected cell. But its not selecting the entire row or highlighting it.
<Grid Background="{StaticResource WindowBackground}" >
<s:ScatterView>
<s:ScatterViewItem Width="500" Height="300" CanRotate="False" Orientation="0" >
<DataGrid AutoGenerateColumns="True" TouchDown="DgTest_TouchDown" Name="DgTest" />
</s:ScatterViewItem>
</s:ScatterView>