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() 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -