Notepad.cs


 using System; 
using System.Drawing;
using System.Windows.Forms;
namespace Notepad {
class NotepadCloneNoMenu : Form
{
public TestableTextBox textbox;
public NotepadCloneNoMenu() {
Text = "Notepad Clone No Menu";
textbox = new TestableTextBox();
textbox.Parent = this;
textbox.Dock = DockStyle.Fill;
textbox.BorderStyle = BorderStyle.None;
textbox.Multiline = true;
textbox.ScrollBars = ScrollBars.Both;
textbox.AcceptsTab = true;
}
}
}



Extreme Programming Adventures in C#
Javaв„ў EE 5 Tutorial, The (3rd Edition)
ISBN: 735619492
EAN: 2147483647
Year: 2006
Pages: 291

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net