A list of files (pictures) can be searched and shown in listbox

This commit is contained in:
2020-08-02 23:28:42 +02:00
parent 6949a7ba33
commit 4e56dadd25
8 changed files with 236 additions and 10 deletions

View File

@ -103,8 +103,13 @@
Grid.Row="6" Grid.Column="1"
Grid.ColumnSpan="2" Margin="3,3,0,3"
MinHeight="300" MinWidth="150"
HorizontalAlignment="Left" Width="150">
HorizontalAlignment="Left" Width="150"
ItemsSource="{Binding PicList}">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding PictureFileName}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<!--Row 7-->