This is some kind of follow-up with this question.
Say I have a form that the user can fill out, with a ComboBox. There is a button next to the combobox. This button allows to go to a new page where the user can manage the items that were present on the combobox. If the user adds a new item and then navigates back, I want to select this new item in the combobox.
On Android I would use startActivityForResult() to launch a new activity and get the new item back when the form page reappears.
How do I do that in a Metro app?