from Tkinter import * root = Tk() root.title("Labeler") root.geometry("200x50") app = Frame(root) app.grid() lbl = Label(app, text = "I'm a label!") lbl.grid() root.mainloop()
18.17.Label | ||||
18.17.1. | Import only Label from Tkinter library | |||
18.17.2. | Import all from Tkinter | |||
18.17.3. | Label Widget Demo | |||
18.17.4. | Creating a Label | |||
18.17.5. | Config Label for its background, font and size | |||
18.17.6. | Add Label and Entry by using table layout | |||
18.17.7. | Label demonstration. | |||
18.17.8. | Demonstrates a label | |||
18.17.9. | Creating a Class to Handle User Interfaces |