hey,
i am stuck in a problem since few days and i hope some1 could help me.
i got somes values in IO in second page and i would like when the user press a button in the first page to put them in some TB in a grid. and add a new row in a grid
something like
foreach product
product ++
new row ++
etc
but i dont know how to add row in a grid via csharp side
ty
I’d suggest binding your listbox on page to an ObservableCollection of your objects.
When you add rows to this ObservableCollection, your listbox will then automatically update.