Untitled
unknown
plain_text
2 years ago
291 B
19
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