<< 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

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
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