DataRepeater control in WPF?
Is there something similar to DataRepeate开发者_如何学编程r Control for WPF?
There are lots of them, it just depends on what you want to do.
In the case above, I'd use an ItemsControl
with custom rendering for the individual items via binding.
A simple way is using Listbox; rewrite its ItemTemplate and ItemsPanel.
精彩评论