如何在 python 中设置旋转框值的递增和递减步长

how to set a step for increment and decrement of spinbox value in python

我有一个旋转框。我想为其分配一个步骤,即旋转框的值,而不是按一个单位更改,而是按此步骤的值更改。例如,“from_”选项的值为 0,“to”选项的值为 1。我希望当用户单击旋转框的向上按钮时,旋转框的值更改为 0.001,第二次单击该值更改为 0.002 等等在。 spinbox 中是否有任何选项可以做到这一点???

Spinbox 接受一个 increment 选项:

A floating-point value specifying the increment. When used with from_ and to, the value in the widget will be adjusted by increment when a spin button is pressed (up adds the value, down subtracts the value).

sb = tk.Spinbox(root, from_=0, to=100, increment=.001)