1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Ink;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using VocabManager.Command;
- namespace VocabManager.ViewModel
- {
- public class AboutViewModel : ViewModelBase
- {
- public string Title
- {
- get
- {
- return "About";
- }
- }
- public string ContentText
- {
- get
- {
- return
- "Vocab manager is your comprehensive tool to memorize, learn new words and increase your "+
- "language skills.This is a generic application in which user learn new languages and prepare "+
- "for different language and competitive exams (TOEFL, IELTS, GRE, GMAT).\r\n\r\n The user can "+
- "create different set of decks in which they can add multiple new cards. User can write a word "+
- "in one language and at the back of the card they can add the translation in another language."+
- "\r\n\r\nAuthor: Mojtaba Sarooghi and Ujjwal Mairh\r\n"+
- "Send feedback and suggestion to m.sarooghi@gmail ujjwal.mairh@gmail.com";
- }
- }
-
-
- }
- }
|