radio button - Can ttk radiobuttons be made to have style Toolbutton by default? -
i can set toolbutton style individual radiobuttons:
#!/bin/sh # \ exec /usr/bin/wish "$0" "$@" set x11 /usr/x11/include/x11/bitmaps image create bitmap leftimage -file "$x11/left_ptr" image create bitmap rightimage -file "$x11/right_ptr" ttk::radiobutton .left -variable foo -image leftimage -style toolbutton ttk::radiobutton .right -variable foo -image rightimage pack .left .right
but can't figure out how make them have toolbutton style default, ie, without having specify every 1 separately.
you can style 'tradiobutton', default style radio buttons.
Comments
Post a Comment