AboutViewModel.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. using VocabManager.Command;
  12. namespace VocabManager.ViewModel
  13. {
  14. public class AboutViewModel : ViewModelBase
  15. {
  16. public string Title
  17. {
  18. get
  19. {
  20. return "About";
  21. }
  22. }
  23. public string ContentText
  24. {
  25. get
  26. {
  27. return
  28. "Vocab manager is your comprehensive tool to memorize, learn new words and increase your "+
  29. "language skills.This is a generic application in which user learn new languages and prepare "+
  30. "for different language and competitive exams (TOEFL, IELTS, GRE, GMAT).\r\n\r\n The user can "+
  31. "create different set of decks in which they can add multiple new cards. User can write a word "+
  32. "in one language and at the back of the card they can add the translation in another language."+
  33. "\r\n\r\nAuthor: Mojtaba Sarooghi and Ujjwal Mairh\r\n"+
  34. "Send feedback and suggestion to m.sarooghi@gmail ujjwal.mairh@gmail.com";
  35. }
  36. }
  37. }
  38. }