Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个纺纱箱。我想为它分配一个旋转框的值而不是改变一个单位,而是改变这个步骤的值。例如,“from_”选项的值为0,“to”选项的值为1。我希望当用户单击spinbox的向上按钮时,spinbox的值更改为0.001,第二次单击该值更改为0.002等等上。spinbox中有什么选项可以做到吗???
Spinbox接受一个increment选项:
Spinbox
increment
指定增量的浮点值。当与from_和to一起使用时,小部件中的值将在按下旋转按钮时按增量进行调整(向上添加值,向下减去值)。
sb = tk.Spinbox(root, from_=0, to=100, increment=.001)