Beispiel #1
0
        public void SelectResponse()
        {
            ResponseVM newResponse = SelectAndCreateResponse(SelectedQuestion.Response);

            if (newResponse != null)
            {
                SelectedQuestion.Response = newResponse;
                //When the question is selected, the following notification is needed for Response Style name to be reflected in the name of Response Style the question grid
                SelectedQuestion.NotifyPropertyChanged("ResponseTitle");
                Window.UpdateTemplate();
            }
        }