I'm currently converting a reasonably complex excel spreadsheet calculation tool to UWP.
From my online research there is no 'grid' in the traditional sense under UWP, unless you use a third party tool like Syncfusion.
I currently have several Grids (5 rows x 49 columns), however as XAML Binding doesn't map to Dictionaries well, I've had to create a property per 'cell' to bind (245 properties per grid), not to mention all of the OnPropertyChanged calls.
I've done one grid and it works fine - however I've got another 4 to implement, then another 5 (14 x 49) data entry grids.
This seems like a LOT of effort, so I can't help but think I've missed something and that there must be an easier way.
Does anyone have any suggestions?
Thanks in advance.
What I have tried:
Sledge hammer approach - property & textbox grid per cell. I've unsuccessfully tried using a Collection and Converter.