i have a ListView Control, the ListView includes 3 Images, the xaml code:
<ListView x:Name="successiveListView"
BorderThickness="0"
Background="Pink"
HorizontalAlignment="Center"
HorizontalContentAlignment="Center">
<Image Margin="0,0,0,0"Source="Assets/0.jpg"></Image>
<Image Margin="0,0,0,0" Source="Assets/1.jpg"></Image>
<Image Margin="0,0,0,0" Source="Assets/2.jpg"></Image>
</ListView>
I view it in simulator, there is 10 pixels' distance between two Images, how can i remove the distance, or tell me the default distance between two Items .
thanks.
--King Star
winRT