I have searched but cannot find the equivalent of windows forms Listbox with multicolumns in WPF.
I want/need to be able to add a unknown number of items to this list and it should automatically start a new “column” to the right when the height of the control is reached.
I dont want multicolumn rows like a listview or grid, each item is a singel text with a checkbox, not a row with several columns that belong to the same row.
The Listbox in WPF, as far as i can see, isn’t able to do multicolumns, it can only add below the last one and add a scrollbar.
Is there a way to force the listbox to behave like the windows forms equivalent?
Or is there some other control that has simular behaviour?
The windows form behaviour is enabled by setting MultiColumn
to True
as described here /a/22764949/619791