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'sSelectedItemto null (the property is bound two-way), - setting the
FallBackValueof theSelectedItemto 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?