I am trying to figure out how to make a flip view that would have a table in it. Basically I want to have a table with information for that day. Then you can flip to the next day or previous day and a new table would load up.
I am not sure how to do this though in Xaml. I will eventually have a data source that will connect to this table and pull the right information up but first I need to figure out how to write the xaml to make the table inside a flip view.
I am not sure if I should be using “Grid” or “Grid Layout”.
Edit
I tried both these controls but was not really sure how to get it to have a column format nor how to get it so the flip view thought that there was more than one table(so it would give the controls to get to the next table).
Edit2
This is what I am trying to achieve (more styled up later and x number of rows per section and no border lines)

The documentation for the
Gridclass shows how to add rows, columns etc. You can useGridto do a layout with other elements placed in a few rows/columns. To use more than a few or to bind a collection – various ItemsControl classes are better –ListView&GridVieware probably most common on Windows 8.