Which WPF control allows listing of items and context menus on each of the items? Up until now, I've been using a ListBox, but it seems as though there's no easy way of adding context menus to its items. Instead, I'm looking at changing the ListBox to another control that does allow context menus.
The only ListBox properties/methods I'm using right now are "SelectedIndex" and "SelectedItem". As long as the suggested control supports this or has another substitute, I should be fine.