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!

  • Graphic elements that represent tabular information, there are many. 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 same ListBox from the box. Adding elements is done either automatically (use ObservableCollection ) or manually. Click and OnScroll is processed in code behind. What is missing? - VladD

1 answer 1

Grid

  • four
    @ Niki-Timofe, Try to write more detailed answers. Explain what your statement is based on. - Nicolas Chabanovsky