Home > Enterprise >  How to customize UI or DataTemplate for each item in listView UWP C#
How to customize UI or DataTemplate for each item in listView UWP C#

Time:09-25

I have a listView containing different types of items and I need to display them using different elements in UI. e.g. i have children and adult members in listView, and children will not have kids, spouses etc, while adults will have their children, spouses, workplace etc. As far as i know, once i layout structure in XAML using data template, i cannot change it. I created a UserControl for different items, not sure how to use it in ListView when adding items.
Looking for help on how to do this.

Thanks in advance.

CodePudding user response:

Based on your scenario, you could try to use enter image description here

You could get more detailed information here: Data template selection: Styling items based on their properties

  • Related