0 Pluspunkte 0 Minuspunkte
Wie erstelle ich eine mehrzeilige Textarea in Python mit Tkinter?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Hier ist ein Beispiel Script mit einem Dropdown.

import tkinter as tk
from tkinter import scrolledtext

root = tk.Tk()

text_widget = scrolledtext.ScrolledText(root, wrap=tk.WORD, width=40, height=10)
text_widget.pack()

initial_text = "This is a text area with scrollbars.\nYou can type and edit text here."
text_widget.insert(tk.END, initial_text)

root.mainloop()
von