I have been trying to make a class based on Tk(). My code is such a mess, I would be embaressed to show you what I came up with. Here is what I am trying to do
class Window(Tk):
fill in the code
here
win = Window()
win.mainloop()
I can do this with out using classes, but as a single object I am having trouble
I would like the window to be a certain dimension, and have a single button in it. I would greatly appreciate an example.