Control-Z and Control-Y not working in CustomTkinter TextBox

74 Views Asked by At

I am using CustomTkinter to make my own application. I have created a textbox in the program. It lets me to copy and paste but not to redo or undo.

I have tried solutions online but they are for tkinter and do not work in customtkinter. My whole point of using customtkinter is for better looking GUIs. Below is the following code for making a textbox I used.

        self.Entry = CTk.CTkTextbox(self, width=816, height=420, font=self.FontList)
        self.Entry.grid(row=1, column=0)

Thank You

Vihaan Mody

0

There are 0 best solutions below