serhio
serhio

Reputation: 28586

DataRepeater control in WPF?

Is there something similar to DataRepeater Control for WPF?

enter image description here

enter image description here

Upvotes: 2

Views: 1793

Answers (2)

Howard
Howard

Reputation: 3848

A simple way is using Listbox; rewrite its ItemTemplate and ItemsPanel.

Upvotes: 1

OJ.
OJ.

Reputation: 29401

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.

Upvotes: 7

Related Questions