I’m developing my first Windows Phone App and I am wondering if there is such a control as the dataset navigator for windows forms.
The scenario: I have a collection of questions, which the user has to answer one by one. At the moment, I’ve implemented this with page navigation – the page navigates to herself and uses the ID of the next question in the “Query String”. Without a unique parameter in the “Query String”, the page navigation won’t work. This is a working solution, but I can’t say that I like it, because of the many page loads. I am wondering if there is another “better” way to achieve the same functionality. E.g.: the use of data binding (binding the current question to a textbox) and a dataset navigator for navigating from question to question on the same page instance.
Does anyone have some experience or idea how to achieve this?
Thanks in advance!
George.