Hello! In general, the task is to build a table from the response from the server. I make a post request, the server gives Json, and then I need to build a table, handle a click on the table element and add elements to the end of the table when the user has scrolled to the bottom. Is there something like that? I found a ListBox, but I could not find an adequate example of the implementation of all the functionality that I listed. Thank you all!
ListView
,StackPanel
,DataGrid
, whatever. Describe all the functionality that you need. Sending a request and parsing JSON does not relate to the functionality of the table, I do not understand why you mention them at all. Building a table from the data collection works with the sameListBox
from the box. Adding elements is done either automatically (useObservableCollection
) or manually. Click and OnScroll is processed in code behind. What is missing? - VladD