File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 5
5
root = tkinter .Tk ()
6
6
7
7
def tkA ():
8
- root .configure ( text = "Test Window" )
8
+ root .title ( "Test Window" )
9
9
10
10
def tkB ():
11
- root .configure ( text = "Demo Window" )
11
+ root .title ( "Demo Window" )
12
12
13
13
def tkC ():
14
- root .configure ( text = "Support" )
14
+ root .title ( "Support" )
15
15
16
16
def tkD ():
17
- root .configure ( text = "Dictionary" )
17
+ root .title ( "Dictionary" )
18
18
19
19
def tkE ():
20
- root .configure ( text = "Documentation" )
20
+ root .title ( "Documentation" )
21
21
22
22
def tkF ():
23
- root .configure ( text = "Editor" )
23
+ root .title ( "Editor" )
24
24
25
25
def tkG ():
26
- root .configure ( text = "Photo Editor" )
26
+ root .title ( "Photo Editor" )
27
27
28
28
def tkH ():
29
- root .configure ( text = "Workstation" )
29
+ root .title ( "Workstation" )
30
30
31
31
32
32
buttonA = tkinter .Button (root , text = "Change to Test Window" , command = tkA )
You can’t perform that action at this time.
0 commit comments