Java AWT Notepad A simple Notepad application built using Java AWT. This project demonstrates GUI programming, menu handling, and basic file operations in Java.
----Features----
-File Menu:
New: Clears the text area to create a new file.
Open: Opens an existing text file using a FileDialog.
Save / Save As: Saves the text content to a file.
Exit: Closes the application.
-Edit Menu:
Cut, Copy, Paste: Standard text operations.
Delete: Deletes the selected text.
Select All: Selects all text in the editor.
-View Menu:
Zoom: Displays [Zoom clicked] in the text area (placeholder).
Status Bar: Displays [Status Bar clicked] in the text area (placeholder).
Word Wrap: Displays [Word Wrap clicked] in the text area (placeholder).
-User Interface:
Text editing using TextArea.
Menu-driven interface with File, Edit, and View menus.
Event-driven design using ActionListener.