ttk.Label
ttk.Label erzeugen
label = ttk.Label(parent, Optionen)
Optionsname | Beschreibung |
---|---|
background | Hintergrundfarbe |
relief | siehe Rahmenoptionen |
ttk.Label kennt die Standardoptionen: anchor, class_, compound, cursor, font, foreground, image, justify, padding, state, style, takefocus, text, textvariable, underline width und wraplength
Das folgende Programm stellt ein Label mit einer sehr kleinen wraplength
-Optionen vor:
import tkinter as tk
from tkinter import ttk
class A(tk.Tk):
def __init__(self):
super().__init__()
self.geometry("300x300")
self._createWidgets()
def _createWidgets(self):
label1 = ttk.Label(self, text='Lorem Ipsum', wraplength=10);
label1.pack(expand=tk.YES, fill=tk.BOTH, padx=2, pady=2)
if __name__ == '__main__':
window = A()
window.mainloop()
Label-Methoden
- Konfigurationsmethoden:
cget(…)
undconfigure(…)
- Sonstige Methoden:
identify(…)
,instate(…)
undstate(…)