I have a small Python GUI that is simply a smaller and less advanced version of Microsoft's Notepad. It allows the loading and saving of files and such, and a few other basic menu options such as exiting.
Tkinter works generally well for creating such programs, but I would like to know whether it is possible to use the much nicer looking Windows 10 buttons than to be stuck with the rather ugly looking Tkinter ones. (see difference below, Tkinter is the top picture, Windows is the lower one).
I know it's a bit of an obscure problem, but if anyone knows whether this is possible I'd be very pleased. Nothing makes me happier than a clean looking program :) I have my doubts though...
Below is the code used for my current buttons (I am aware of how awkward .place is, but it works for me at the minute) :)
yes = Button(confirmation, text = "Yes", command = ProgramTerminate, width = 5, height = 1)
yes.place(x = 100, y = 25)
no = Button(confirmation, text = "No", command = confirmation.destroy, width = 5, height = 1)
no.place(x = 150, y = 25)

