This is a simple Notepad application built in Python using the Tkinter library. It provides basic text editing functionalities such as creating, opening, saving, and editing text files. It also includes undo/redo, cut/copy/paste, and more.
-
File Operations
- Create a new file.
- Open an existing text file.
- Save the current file.
- Save as a new file.
-
Edit Operations
- Undo and redo changes.
- Cut, copy, and paste text.
- Delete selected text.
- Select all text.
-
Help
- "About" section with application information.
-
Shortcut Keys
- New File:
Ctrl + N
- Open File:
Ctrl + O
- Save File:
Ctrl + S
- Save As:
Ctrl + Shift + S
- Exit:
Ctrl + Q
- Undo:
Ctrl + Z
- Redo:
Ctrl + Y
- Cut:
Ctrl + X
- Copy:
Ctrl + C
- Paste:
Ctrl + V
- Select All:
Ctrl + A
- New File:
- Python 3.x
- Tkinter (included in the Python standard library)
- Run the script:
python main.py