Reputation: 18068
How to get selected item or the text from looping selector?
Upvotes: 0
Views: 616
The correct access to the selected item is:
TypeOfTheItem s= (TypeOfTheItem)selectorString.DataSource.SelectedItem;
Upvotes: 2