diff --git a/src/Gifitti/Gifitti/View_Models/Form2.cs b/src/Gifitti/Gifitti/View_Models/Form2.cs index 0cc302a9f8e1f0bf10c5ba5a94260a715e3a338e..a78e2785f6dc018548974e63a5934a7ac81b4dd2 100644 --- a/src/Gifitti/Gifitti/View_Models/Form2.cs +++ b/src/Gifitti/Gifitti/View_Models/Form2.cs @@ -19,22 +19,22 @@ namespace Gifitti.View_Models private void openingGIF_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - richTextBox1.Text = "To open a GIF"; + richTextBox1.Text = "To open a GIF, click File->Open. Using the file browser window that appears, select the GIF that you would like to open for modification and click 'Open'."; } private void savingImage_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - richTextBox1.Text = "To save an image"; + richTextBox1.Text = "To save an image, click File->Ouput as Image... and select the file type you would like to export the frames as. Using the folder browser window that appears, select the location you would like to save the images."; } private void savingGIF_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - richTextBox1.Text = "To save a GIF"; + richTextBox1.Text = "To save a GIF, click File->Save As... Using the file browser window that appears, select the location you would like to save the GIF to."; } private void pickFrames_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - richTextBox1.Text = "To select the range of frames"; + richTextBox1.Text = "To select the range of frames, simply use the boxes in the bottom center of the window to adjust which frames are displayed and saved. If the range is out of bounds, the GIF may appear choppy or simply stop."; } } }