I would like to change the name of a widget like this example :
window = Tk()
window.mainloop()
test_frame = Frame(window, name="test_frame")
test_frame.config(name="test_frame_name")
Do you have any solution to do something like this ?
I always get an error like _tkinter.TclError: unknown option "-name"
Thanks for your help