What is the equivilent of a UITableView in Windows Phone 7 development?
I’m trying to make the equivalent of a custom UITableViewCell with an image on the left and custom UILabels on the right side. Obviously the amount of rows is based on the count of an array of values.
Can someone give me some pointers on what I should do to get the same effect on Windows Phone 7.1?
For any list type of UI element, you would want to use a
ListBox, with a customDataTemplate.XAML is more about flexibility, so you don’t have specialized UI elements, but instead you can customize a number of base controls to look precisely like you want them.
You probably want a
Gridinside yourDataTemplate