コード例 #1
0
        public QuestionPage(QuizQuestion quizQuestion)
        {
            InitializeComponent();

            this.BindingContext = quizQuestion;
        }
コード例 #2
0
 public QuizQuestionViewModel(QuizQuestion quizQuestion, bool?response)
 {
     this.Response     = response;
     this.quizQuestion = quizQuestion;
 }