I have 30000 pictures,now I need a control that can show me the image(as a pictures not just the file path) with its files name.
Need some kind of paging e.g. 30 pictures a page, I thought of GridView ?!
I have a list which contains a Hashtable(key: escaped path to that picture, value: picture name), I have a GridView which is bound to that hashtable, but it show only the file path.
c#:
wordListView.ItemsSource = Hsh;// contains a property of Hahstable;
XAML:
<DataGrid x:Name="wordListView" HorizontalAlignment="Left" VerticalAlignment="Top" Height="260" Width="645" Margin="10,156,0,0">
<!--AutoGenerateColumns="False" ItemsSource="{Binding}">-->
<!--<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding ID}" Header="ID" IsReadOnly="True" />
<DataGridTextColumn Binding="{Binding Path}" Header="Path"/>
<DataGridTextColumn Binding="{Binding TimeStamp}" Header="TimeStamp"/>
</DataGrid.Columns>-->
</DataGrid>