When my app starts, there is a ListView
populated with data. How do I set it so that the first row is not selected automatically? Ie I don't want any items to be selected until the user clicks one
I have tried:
- setting the property bound to the
ListView
'sSelectedItem
to null (the property is bound two-way), - setting the
FallBackValue
of theSelectedItem
to null
but neither of these worked. Is there a way to do this, or am i stuck with the first item being selected when the app starts?