HelpViewModel.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Net;
  3. using System.Windows;
  4. using System.Windows.Controls;
  5. using System.Windows.Documents;
  6. using System.Windows.Ink;
  7. using System.Windows.Input;
  8. using System.Windows.Media;
  9. using System.Windows.Media.Animation;
  10. using System.Windows.Shapes;
  11. namespace VocabManager.ViewModel
  12. {
  13. public class HelpViewModel : ViewModelBase
  14. {
  15. public string Title
  16. {
  17. get
  18. {
  19. return "Help";
  20. }
  21. }
  22. public string ContentText
  23. {
  24. get
  25. {
  26. return
  27. "1) Click on \"start\" button to start the application from the main page.\r\n\r\n" +
  28. "1) Click on new deck icon from the application menu bar to create a new deck: Add a meaningful name - e.g. Finnish-English, German-English,TOEFL words, etc.\r\n\r\n" +
  29. "2) After the new deck is created, click on review deck, then click on add new cards. Enter a word on the front side of card and add the translation or description at the back side.\r\n\r\n" +
  30. "3) If you wish to attach your own voice along with the word, please press \"start speaking\" button. Once you are done with adding your voice press \"stop speaking\" button and press save button from the main list of icons. Your card will be added to the deck you have created.\r\n\r\n" +
  31. "4) Add multiple cards to the same deck or go back to the main menu and create a new deck of cards.\r\n\r\n" +
  32. "5) Review your saved cards at any time. In order to review, select a particular deck and browse through the cards. Tap on a card to see the back side of the card to confirm your answer.";
  33. }
  34. }
  35. }
  36. }