TextBox--Appearance---scrollbars--vertical (vertical scroll bar)
This. Close (); Close window
Textbox1.undo (); Undo the previous action in TextBox1
Textbox1.cut (); Cut-Moves the selection in the TextBox1 to the Clipboard
Textbox1.copy (); Copy--Copies the selection in TextBox1 to the Clipboard
Textbox1.paste (); Paste-Replace the selection in TextBox1 with the contents of the Clipboard
Textbox1.selectall (); Select all content in TextBox1
private void textBox1_TextChanged (object sender, EventArgs e)
{
String num = TextBox1.TextLength.ToString (); Number of words in TextBox1
Zishu. Text = num; Word count display
}
--------------Menus and Toolbars---------------
ContextMenuStrip---------Right-click menu bar
MenuStrip------------top menu bar
StatusStrip----------Bottom Menu bar
ToolStrip------------Toolbar
ToolStripContainer-----(You can place menus, controls around)
Simple Notepad Finishing