<< Chapter < Page Chapter >> Page >

Many different combinations of N, S, E, and W can be used to control the placement of the widget in the cell. A good explanation is provided in Layout within the Cell at TkDocs. The combination used in the second statement of Listing 2 causes the Frame to be stretched in all four directions so as to be stuck to all four sides of the root . In other words, the Frame completely fills the available space within the root container.

The last two statements in Listing 2 were explained by According to TkDocs above.

StringVar

To make a long story short, the StringVar objects shown in Listing 3 are used to connect the string values for feet and meters to the textvariable arguments of an Entry widget and a Label widget, which you will see later.

(If you connect a widget to a StringVar object using a textvariable argument, a change in the contents of either will cause a corresponding change in the other. This isdiscussed in some detail at 25.1.6.4. Coupling Widget Variables .)

Listing 3 . StringVar objects.
feet = StringVar() meters = StringVar()

The Entry widget

In the initial design stages of the GUI, the author indicates that the widgets will be placed in three columns and three rows.

The first statement in Listing 4 creates a new widget of the class Entry and saves the object's reference in the variable named feet_entry . According to The Tkinter Entry Widget ,

"The Entry widget is a standard Tkinter widget used to enter or display a single line of text."

The first argument is the parent -- in this case mainframe . This is followed by many possible optional arguments, one of which is width .

Listing 4 . The Entry widget.
feet_entry = ttk.Entry(mainframe, width=7, textvariable=feet) feet_entry.grid(column=2, row=1, sticky=(W, E))

The width argument

The Tkinter Entry Widget describes the width argument as follows:

"Width of the entry field, in character units. Note that this controls the size on screen; it does not limit the number of characters that can be typed into the entry field. The default width is 20 character."

The first statement in Listing 4 sets the width to seven characters.

The textvariable argument

The Tkinter Entry Widget describes the textvariable argument as follows:

"Associates a Tkinter variable (usually a StringVar) to the contents of the entry field."

This argument is set equal to feet from Listing 3 . From this point forward, values entered into the data entry field shown in Figure 2 will be saved in the StringVar named feet . This makes the value available to the calculate function that will be discussed later.

Make the Entry field visible

The author of the program explains that the first statement in Listing 4 creates the Entry widget but does not make it visible in the GUI. In order to make it visible, you must tell Tk where to place it relative to other widgets. Thisis accomplished by the call to grid in the second statement in Listing 4 , which places the Entry widget in column 2 and row 1. (Note that the author seems to have skipped column 0 and row 0 as described earlier .)

The sticky parameter in Listing 4 instructs Tk to stretch the Entry widget horizontally and make it touch both sides of the cell. (Note that manually stretching the size of the root on the screendoes not stretch the size of the Frame or the widgets contained in the Frame.)

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask