Probieren: Label & Buttons



Label & Buttons

Probiere folgendes Beispiel in IDLE:

>>> from tkinter import *
>>> root=Tk()
>>> lab=Label(root,text="Viel Spass mit dem Tkinter-Tutorial!")
>>> lab.pack()
>>> root.mainloop()

Gib jetzt ein:

>>> root=Tk()
>>> lab=Label(root,text="Hallo, Info E2...")
>>> lab.pack()
>>> root.mainloop()

Probiere auch:

>>> root=Tk()
>>> lab=Label(root,text="Info in red",background="red")
>>> lab.pack()
>>> root.mainloop()

Zweites Beispiel:

>>> from tkinter import *
>>> root=Tk()
>>> but=Button(root,text="Info")
>>> but.pack()
>>> root.mainloop()

Öffne den Editor und gib ein (abspeichern unter tkButton1.py):

from tkinter import *

def nachricht():
    lab=Label(root,text="Hallo Info E2!")
    lab.pack()

root=Tk()
but=Button(root,text="Info",command=nachricht)
but.pack()
root.mainloop()

Probiere auch (abspeichern unter tkButton2.py):

from tkinter import *

def nachricht():
    lab=Label(root,text="Viel Spass mit dem Tkinter-Tutorial!")
    lab.pack()

root=Tk()
but=Button(root,bitmap="questhead",command=nachricht)
but.pack()
root.mainloop()

Beschreibe die Veränderungen!

Hinweis: Du musst eventuell das Fenster vergrößern


→ sp, 2023-07-27