Zebra0.com

csharpGlossary for C#: richtext

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 items
clipboard 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 clipboard
context 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 click
datetime 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 text
file 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 filename
file 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 first
file 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 font
resize 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 statusbar
richtextbox 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 project
richtextbox reference: Microsoft Reference(Lesson: Zebra Notes: Open, Save, Save As, and Format with a Rich Text Box)
   The Rich Text Box Overview
save 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 file
track 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 changed
Full Glossary