Note: I already saw this and it doesn’t answer the question.
I have a first run experience for my app that presents the user with a few different options explaining what the app does. If they select one of those options, I want to show them the PanoramaItem that deals with that particular functionality. It happens to be item #3.
So, Panorama.SelectedItem is read-only. Is there some other way to do it? If not, could I fake it by, say, simulating some gesture input? How would one do that?
Since
SelectedItemandSelectedIndexare currently under theprivate setrule, indeed you cannot modify them through the application. However, you can change theDefaultItemproperty:It will cause items to be a bit re-arranged since you are setting an item to be the first in the list, but other than that it is an acceptable way to do this, since it will actually bring the item in front of the user.