- Education Resources
PrivacyContact Glossary for C#: richtext
Learn C# (C sharp) in FREE step-by-step lessons.
app finishing touches: Finishing touches(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Finishing touches include adding icon, about box, and removing unused menu itemsclipboard copy cut paste: Using clipboard to copy, cut and paste.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Code implements copy, cut and paste using the clipboardcontext menu: Using a context menu to copy, cut and paste.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
A context menu is a pop-up menu that appears on right clickdatetime display: Display the date and time on timer tick.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Timer event: toolStripStatusDateTime.Text = System.DateTime.Now.ToString();dialog change color: Change color of selected text.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Uses the Color Dialog to select color of selected textfile save before closing: Remind to save before closing.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Code to cancel closing the form if user wants to save first.file save before new: Remind to save when selecting New.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
On selecting new, first ask about saving (if changes), then clear text and filenamefile save before open: Remind to save before Opening new file.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Code to open a new file and load it asks about saving firstfile save warning: Do you want to save?(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
If there have been changes warn user when they select New, Open, or exit program.font change dialog: Change font of selected text.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Uses the Font Dialog to select fontresize control: Resize: Rich text box fills the form.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Richtext box fills the lower part of the form: between the toolstrip and the statusbarrichtextbox app form: Build the Form(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Show all the controls and properties for this projectrichtextbox reference: Microsoft Reference(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
The Rich Text Box Overviewsave file rtf: Save the file as rtf.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
Code for function to save the contents of the richtext box to filetrack changes: Declare variables to track changes.(Lesson:
Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   
In order to remind the user to save, we use a Boolean variable changedFull Glossary