コード例 #1
0
        public AddAnswerViewModel()
        {
            vml = new ViewModelLocator();
            qvm = vml.Questions;

            AddAnswerCommand = new RelayCommand(AddAnswer);
        }
コード例 #2
0
 public AddQuestionViewModel()
 {
     vml = new ViewModelLocator();
     qvm = vml.Questions;
     AddQuestionCommand = new RelayCommand(AddQuestion);
 }