Yoda
Yoda

Reputation: 18068

How to get selected item from LoopingSelector Windows Phone

How to get selected item or the text from looping selector?

Upvotes: 0

Views: 616

Answers (1)

Yoda
Yoda

Reputation: 18068

The correct access to the selected item is:

TypeOfTheItem s= (TypeOfTheItem)selectorString.DataSource.SelectedItem;

Upvotes: 2

Related Questions