What are the alternatives to Grid for displaying repeating data in WPF?
For example, how would I show customers as a list of business cards?
What are the alternatives to Grid for displaying repeating data in WPF?
For example, how would I show customers as a list of business cards?
You could use a ListView and use a customized DataTemplate that shows each customer in some business-card like format. Here's a nice tutorial that does something similar: WPF Twitter Tutorial.