Glossary for C#: richtext
Learn C# (C sharp) in FREE step-by-step lessons.
clipboard: Code implements copy, cut and paste using the clipboard
Using clipboard to copy, cut and paste.contextmenu: A context menu is a pop-up menu that appears on right click
Using a context menu to copy, cut and paste.Rich Text Box REFEWRENCE: The Rich Text Box Overview
Microsoft Referencerichtext color: Uses the Color Dialog to select color of selected text
Change color of selected text.richtext finish: Finishing touches include adding icon, about box, and removing unused menu items
Finishing touchesrichtext font: Uses the Font Dialog to select font
Change font of selected text.richtext1 form: Show all the controls and properties for this project
Build the Formrichtext2 changes: In order to remind the user to save, we use a Boolean variable changed
Declare variables to track changes.richtext3 resize: Richtext box fills the lower part of the form: between the toolstrip and the statusbar
Resize: Rich text box fills the form.richtext4 datetime: Timer event: toolStripStatusDateTime.Text = System.DateTime.Now.ToString();
Display the date and time on timer tick.richtext5 save: Code for function to save the contents of the richtext box to file
Save the file as rtf.richtext6 asktosave: If there have been changes warn user when they select New, Open, or exit program.
Do you want to save?richtext7 closing: Code to cancel closing the form if user wants to save first.
Remind to save before closing.richtext8 open: Code to open a new file and load it asks about saving first
Remind to save before Opening new file.richtext9 new: On selecting new, first ask about saving (if changes), then clear text and filename
Remind to save when selecting New.Full Glossary