I’m writing an application using WPF, and I need to make something that looks like this (see image):

What control should I use for this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t need the groupings (the “Hire as chef” and “Seek dinner invitation” headings), thenDataGridshould get you close. You can bind itsItemsSourceto your collection of items, and define custom columns bound to your items’ properties.For example, you can use a
DataGridTextColumnfor “Occupation”,DataGridCheckBoxColumnfor “Tells Jokes?”, andDataGridTemplateColumnfor more complex properties which require a customDataTemplateto visualize, such as the main “Person” column or “Cooking skill”.Edi: It appears that the
DataGriddoes support grouping as well.