katit
katit

Reputation: 17915

datarepeater like control in Silverlight?

I need some kind of control to wrap my UI (which generates using binding). Currently I use ListBox but not sure if it's lightest or best choice. I just need placeholder that I can bind to and insert my controls.

enter image description here

Upvotes: 1

Views: 989

Answers (2)

ChrisF
ChrisF

Reputation: 137148

You can use any control that takes a list of entities as it's data source.

This could be DataGrid, ListBox (as you are already using) or anything that inherits from ItemsControl - this includes things like the TabControl as well.

Upvotes: 0

Ray
Ray

Reputation: 46585

You're probably looking for the ItemsControl

Upvotes: 5

Related Questions