Hello
I am developing a quiz application with multiple choice questions and there are fifty (50) questions in all
I have created a UI for it containing question, four radio buttons and next button to move to the next question on the xaml page
Instead of creating fifty (50) xaml pages for each question, how can i use one (1) xaml page for all the fifty (50) questions by
loading the questions from the code whenever the user move to the next question using only one xaml page for all the questions
Regards
Rahat YasirPosted Oct 22, 2014, 11:25 AM
but you can use same xaml code in multiple pages ( you just new to copy the xaml code and paste it on new page)
for you quiz app, you can use different types of method or pattern. you can use mvvm architecture or any other oop pattern that will show different content in same pages according to user interaction.