Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display properties of the ListBox.ItemsSource

I am new to WPF. I have a ListBox that has its ItemSource set to a instance of WorkItemCollection. (A collection of WorkItem objects.)

When the list is displayed it only displays the type of each object (Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem). Is there a way to make the list display WorkItem.Title?

like image 735
Vaccano Avatar asked Nov 02 '09 02:11

Vaccano


1 Answers

You have two options.

The simplest method is to set the DisplayMemberPath property of your ListBox to "Title".

If you want to set not only what gets displayed, but the type of control that is used to display it, then you would set the ListBox's ItemTemplate.

For what your goal is, I would recommend the first option.

like image 157
Andrew Shepherd Avatar answered Oct 02 '22 07:10

Andrew Shepherd