123456789101112131415161718192021222324252627282930313233343536373839 |
- 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;
- namespace VocabManager.ViewModel
- {
- public class HelpViewModel : ViewModelBase
- {
- public string Title
- {
- get
- {
- return "Help";
- }
- }
- public string ContentText
- {
- get
- {
- return
- "1) Click on \"start\" button to start the application from the main page.\r\n\r\n" +
- "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" +
- "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" +
- "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" +
- "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" +
- "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.";
- }
- }
- }
- }
|