Add ScrollBars to TextBox : TextBox « GUI Windows Form « C# / C Sharp






Add ScrollBars to TextBox

 

using System;
using System.Drawing;
using System.Windows.Forms;
   
class NotepadCloneNoMenu: Form
{
     protected TextBox txtbox;
   
     public static void Main()
     {
          Application.Run(new NotepadCloneNoMenu());
     }
     public NotepadCloneNoMenu()
     {
          Text = "Notepad Clone No Menu";
   
          txtbox             = new TextBox();
          txtbox.Parent      = this;
          txtbox.Dock        = DockStyle.Fill;
          txtbox.BorderStyle = BorderStyle.None;
          txtbox.Multiline   = true;
          txtbox.ScrollBars  = ScrollBars.Both;
          txtbox.AcceptsTab  = true;
     }
}          

 








Related examples in the same category

1.new TextBox(), Localtion, Name, TabIndex, Text
2.TextBox locationTextBox location
3.Keyboard event and TextBox
4.Get value from TextBox
5.Text Changed eventText Changed event
6.A simple text editorA simple text editor
7.Convert TextBox input to double valueConvert TextBox input to double value
8.All cap text textboxAll cap text textbox
9.Data CheckerData Checker
10.User EventsUser Events
11.TextBox and button on formTextBox and button on form
12.TextBox and ListBoxTextBox and ListBox
13.Label, TextBox and ButtonLabel, TextBox and Button
14.TextBox DemoTextBox Demo
15.Simple Editor based on TextBox