| Previous | Next
Displaying Text on ButtonsTo show what the Button will do when it is pressed, set its text string with the The -text => 'Submit' The string can be anything: alphanumeric, newline(s), or variables. The text string is just like any other string in Perl in that if it is put in single quotes, it is taken literally; if it is put in double quotes, it is interpolated. The interpolation only happens once (the first time the option is parsed). If a variable changes later in the program, it has no effect on the text in the Button. The only way the text in the Button can be changed after it has been created is by using the There is no default for the The other way to display text on the Button is by using the -textvariable => \$variable This means the text of the Button will change as the contents of This piece of code shows how the
Figure 4-6 shows two windows. The first shows how the window looks when it is first created, and the second shows what it looks like after clicking the "Add 1" Button fifteen times. Even though we don't show any specific examples using the Figure 4-6. Example of using -textvariable |