Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display data in a table in Universal App

I have been looking for a couple of days for a UWP control that has similar functionality as the WPF ListView, which allows me to create a table like appearance.

Is there a control like this in the UWP or not?

What I want to achieve is a SCRUM and Kanban overview for Jira Software. Maybe there are better options.

like image 571
Knerd Avatar asked Sep 26 '22 04:09

Knerd


2 Answers

Microsoft has created an add-on control that fits this use case nicely, the DataGrid control from their community toolkit.

More details: https://docs.microsoft.com/en-us/windows/communitytoolkit/controls/datagrid

It supports sorting, filtering, grouping, and can even generate columns automatically from supplied data.

like image 190
Jack Scott Avatar answered Sep 29 '22 08:09

Jack Scott


There is a control such as that and it is called listview.

https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.controls.listview.aspx

Maybe you could use GridView as well, there is a nice short tutorial on:

https://channel9.msdn.com/Series/Windows-10-development-for-absolute-beginners/UWP-040-Data-Binding-to-the-GridView-and-ListView-Controls

like image 44
pijemcolu Avatar answered Sep 29 '22 07:09

pijemcolu