Gui
Gui
The GUI was first developed at Xerox PARC by Alan Kay, Douglas
Engelbart, and a group of other researchers in 1981.
Later, Apple introduced the Lisa computer with a GUI on January
19, 1983.
Microsoft Windows
Chrome OS
interface.
Are all operating systems GUI?
1. GNOME
2. KDE
3. Any Microsoft program,
including Word, Excel, and Outlook.
4. Internet browsers, such as Internet
Explorer, Chrome, and Firefox.
There are many other interfaces available, which you can find them on
the net.
Tkinter Programming:
Tkinter is the standard GUI library for Python. Python when
combined with Tkinter provides a fast and easy way to create GUI
applications. Tkinter provides a powerful object-oriented interface to the
Tk GUI toolkit.
Creating a GUI application using Tkinter is an easy task. All you need
to do is perform the following steps
Example:
#!/usr/bin/python
import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()
Tkinter Widgets:
Tkinter provides various controls, such as buttons, labels and text
boxes used in a GUI application. These controls are commonly called
widgets.