UWP: XAML's ListView Control and its SelectionChanged event - Part 2
In my previous post (UWP: XAML's ListView Control and its SelectionChanged event - Part 1) you learnt the following: Part 1 Progressively build a ListView Control Place ListViewItems inside a ListView's ItemTemplate You will place three named ListView items In this part you will learn how to write code to change the properties you set for the ListViewItems by the SelectionChanged event. The following image shows the app after a successful run. This displays how the app is displayed at this stage: JListView_23 This next image shows the effect of the SelectionChanged event. JListView_28 You could set the FontSize properties in design as shown.To start with all the ListViewItem 's FontSize was 15px and FontFamily Segoe UI (defaults). Clicking the ListViewItem for 'Dog', you can change its size in the property box (now focus is on 'bird'). JListView_15 As shown i...