Is there a control in silverlight to group controls together for data binding. For instance, say I have a Person object and I want to display fname, lname, age, height, etc. in TextBlocks. Is there a control I can use to group these TextBlock controls together and set the ItemSource on just that control similar to how you set the ItemSource on a DataGrid and then bind each column?
Is there a control in silverlight to group controls together for data binding. For
Share
I think any of these answers is correct, however I don’t think will work/are appropriate for my app. The MVVM approach is overkill for my app and the other two approaches will not work for me for various reasons. I will just do everything in the code-behind.