Resize buttons of a Spinbox -
is there way resize buttons used in spinboxwidget (tkinter)? i'm trying build touchscreen optimized gui. couldn't find suitable option in docs maybe there other way or didn't see option.
thank help!
i don't know way access spinbox
buttons, can use control
widget tkinter.tix:
import tkinter.tix tix root = tix.tk() c = tix.control(root) c.pack() decr = c.subwidget('decr') incr = c.subwidget('incr') decr['height'] = incr['height'] = 100 decr['width'] = incr['width'] = 100 root.mainloop()