Untitled
unknown
plain_text
a year ago
291 B
14
Indexable
class Textbox(CTkTextbox): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs, border_width=2) def clear(self): super().configure(state='normal') super().delete("0.0", "end") # delete all text super().configure(state='disabled')
Editor is loading...
Leave a Comment