/// <summary>
 /// Click event handler for the help button.
 ///This will create a popup/message box for help and add content to the popup.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void buttonHelp_Click(object sender, EventArgs e)
 {
     HelpPopup help = new HelpPopup();
     string helpText = "Tap the camera button image on the application bar to take a photo." + " Once the photo is taken and returned to this page, tap the crop button on the application bar to crop the image.";
     help.Show(helpText);
 }
Example #2
0
 private void buttonHelp_Click(object sender, EventArgs e)
 {
     HelpPopup help = new HelpPopup();
     string helpText = "Use your finger on the image to define a cropping region." + 
         " Once the region is selected, as seen with a rectangle, tap the crop button to crop the image." + 
         " You may choose to save this image in the media library by tapping the check button on the application bar, or reject the cropping and return to the original image with the cancel button (X).";
     help.Show(helpText);
 }