I want to display a list of items in a table like format. The format is fluid such that if a user resizes then more or less items will display on a row. I want to replicate how floated divs display within a container.
How do I do this in WPF?
So far I can get the items to display in a vertical format but cant figure out what to do next. P.s. for now I am hard coding the items whilst I debug, but I will bind it to a list at some point.
<ListView>
<ListViewItem Width="244">
<local:ScheduledRecordingView />
</ListViewItem>
<ListViewItem Width="244">
<local:ScheduledRecordingView />
</ListViewItem>
</ListView>