Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f2b8f0e8
Commit
f2b8f0e8
authored
Jul 14, 2016
by
Berker Peksag
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #27455: Improve examples in tkinter documentation
Patch by John Hagen.
parent
c179d34a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
Doc/library/tkinter.rst
Doc/library/tkinter.rst
+13
-13
No files found.
Doc/library/tkinter.rst
View file @
f2b8f0e8
...
...
@@ -199,19 +199,19 @@ A Simple Hello World Program
class Application(tk.Frame):
def __init__(self, master=None):
tk.Frame.__init__(self,
master)
super().__init__(
master)
self.pack()
self.create
W
idgets()
self.create
_w
idgets()
def create
W
idgets(self):
def create
_w
idgets(self):
self.hi_there = tk.Button(self)
self.hi_there["text"] = "Hello World\n(click me)"
self.hi_there["command"] = self.say_hi
self.hi_there.pack(side="top")
self.
QUIT
= tk.Button(self, text="QUIT", fg="red",
self.
quit
= tk.Button(self, text="QUIT", fg="red",
command=root.destroy)
self.
QUIT
.pack(side="bottom")
self.
quit
.pack(side="bottom")
def say_hi(self):
print("hi there, everyone!")
...
...
@@ -536,7 +536,7 @@ For example::
class
App
(
Frame
):
def
__init__
(
self
,
master
=
None
):
Frame
.
__init__
(
self
,
master
)
super
().
__init__
(
master
)
self
.
pack
()
self
.
entrythingy
=
Entry
()
...
...
@@ -581,13 +581,13 @@ part of the implementation, and not an interface to Tk functionality.
Here
are
some
examples
of
typical
usage
::
from
tkinter
import
*
class
App
(
Frame
):
import
tkinter
as
tk
class
App
(
tk
.
Frame
):
def
__init__
(
self
,
master
=
None
):
Frame
.
__init__
(
self
,
master
)
super
().
__init__
(
master
)
self
.
pack
()
#
create
the
application
myapp
=
App
()
...
...
@@ -708,13 +708,13 @@ add
For example::
def turn
R
ed(self, event):
def turn
_r
ed(self, event):
event.widget["
activeforeground
"] = "
red
"
self.button.bind("
<
Enter
>
", self.turn
R
ed)
self.button.bind("
<
Enter
>
", self.turn
_r
ed)
Notice how the widget field of the event is being accessed in the
:meth:`turnRed
` callback. This field contains the widget that caught the X
``turn_red()`
` callback. This field contains the widget that caught the X
event. The following table lists the other event fields you can access, and how
they are denoted in Tk, which can be useful when referring to the Tk man pages.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment