Click here to Skip to main content
15,892,480 members
Articles / Programming Languages / C#
Article

Simple Note Pad

Rate me:
Please Sign up or sign in to vote.
1.11/5 (12 votes)
5 Oct 20071 min read 23.8K   729   9   2
A Simple Note Pad Application

Introduction

The Simple Note Pad application is a useful for beginners in C# .net. It teaches a person to start making good text editors. It is only a start point, people should read the code and develop further from here.

Background

This application is a start point for any developer who wants to make an entry in writing editors and viewers. I wrote this application when I started my work on an editor like MS word. It is an excellent application to start with

Using the code

The code should be used to start making new editors. The code is extremely simple. For a novice, it is an excellent piece of code. It has an object of System.Windows.Forms.Form class which has many private objects for various controls like MenuStrip, StatusStrip, TextBox, ToolStripMenuItems, etc. There are eventhandlers for mouse enter, mouse leave for tips being flashed on the status bar. There are eventhandler for the click event for each of the ToolStripMenuItem on the Menu.

The abstract of objects is given below: -

//System.Windows.Forms.Form Form1;
// System.Windows.Forms.MenuSTrip Menu;
// System.Windows.Forms.StatusStrip Status; 

For more details on the objects and methods, kindly refer to the documentation along with the source code.

Points of Interest

If you going to start working on writing on a new editor, do read this code. This could become the start point of your code for writing a good editor like MS Word.

History

Keep a running update of any changes or improvements you've made here.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Unknown
I am programmer of C#. Just a beginer as of now.

Comments and Discussions

 
Generalgood try Pin
ESTAN6-Oct-07 7:21
ESTAN6-Oct-07 7:21 
GeneralRe: good try Pin
axe.delhi9-Oct-07 3:31
axe.delhi9-Oct-07 3:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.