<bdo id='sQzVL'></bdo><ul id='sQzVL'></ul>

      <small id='sQzVL'></small><noframes id='sQzVL'>

      1. <i id='sQzVL'><tr id='sQzVL'><dt id='sQzVL'><q id='sQzVL'><span id='sQzVL'><b id='sQzVL'><form id='sQzVL'><ins id='sQzVL'></ins><ul id='sQzVL'></ul><sub id='sQzVL'></sub></form><legend id='sQzVL'></legend><bdo id='sQzVL'><pre id='sQzVL'><center id='sQzVL'></center></pre></bdo></b><th id='sQzVL'></th></span></q></dt></tr></i><div id='sQzVL'><tfoot id='sQzVL'></tfoot><dl id='sQzVL'><fieldset id='sQzVL'></fieldset></dl></div>
      2. <tfoot id='sQzVL'></tfoot>

        <legend id='sQzVL'><style id='sQzVL'><dir id='sQzVL'><q id='sQzVL'></q></dir></style></legend>

        在更改时显示 kivy 滑块值

        时间:2023-10-08
        1. <i id='N4o9I'><tr id='N4o9I'><dt id='N4o9I'><q id='N4o9I'><span id='N4o9I'><b id='N4o9I'><form id='N4o9I'><ins id='N4o9I'></ins><ul id='N4o9I'></ul><sub id='N4o9I'></sub></form><legend id='N4o9I'></legend><bdo id='N4o9I'><pre id='N4o9I'><center id='N4o9I'></center></pre></bdo></b><th id='N4o9I'></th></span></q></dt></tr></i><div id='N4o9I'><tfoot id='N4o9I'></tfoot><dl id='N4o9I'><fieldset id='N4o9I'></fieldset></dl></div>

              <tbody id='N4o9I'></tbody>

            <legend id='N4o9I'><style id='N4o9I'><dir id='N4o9I'><q id='N4o9I'></q></dir></style></legend>
            <tfoot id='N4o9I'></tfoot>
              <bdo id='N4o9I'></bdo><ul id='N4o9I'></ul>

              <small id='N4o9I'></small><noframes id='N4o9I'>

                • 本文介绍了在更改时显示 kivy 滑块值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想知道是否可以将 kivy 微调器值显示为移动标签,以便用户确切知道滑块的当前值是什么.

                  I was wondering whether it was possible to displays kivy spinner values as a moving label, so that the user knows exactly what the current value of the slider is.

                  谢谢

                  推荐答案

                  你只需绑定一个监听器到值改变事件

                  you just bind a listener to the value change event

                  some_label = Label(...)
                  my_slider = Slider(...)
                  def OnSliderValueChange(instance,value):
                      some_label.text = str(value)
                  
                  my_slider.bind(value=OnSliderValueChange)
                  

                  正如 .kv 文件中指出的那样,您可以执行类似的操作

                  as inclement points out in the .kv file you could do something like

                  <PongGame>:
                      ...
                      canvas:
                          Rectangle:
                              ...
                      Label:
                          ...
                          text: str(slider_id.value)
                       Slider:
                          ...
                          id: slider_id
                  

                  这篇关于在更改时显示 kivy 滑块值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:kivy 应用程序中的一个简单网页作为小部件 下一篇:加载表单后如何运行函数 Kivy

                  相关文章

                  最新文章

                    • <bdo id='LET7D'></bdo><ul id='LET7D'></ul>
                  1. <i id='LET7D'><tr id='LET7D'><dt id='LET7D'><q id='LET7D'><span id='LET7D'><b id='LET7D'><form id='LET7D'><ins id='LET7D'></ins><ul id='LET7D'></ul><sub id='LET7D'></sub></form><legend id='LET7D'></legend><bdo id='LET7D'><pre id='LET7D'><center id='LET7D'></center></pre></bdo></b><th id='LET7D'></th></span></q></dt></tr></i><div id='LET7D'><tfoot id='LET7D'></tfoot><dl id='LET7D'><fieldset id='LET7D'></fieldset></dl></div>

                    <tfoot id='LET7D'></tfoot>

                      <small id='LET7D'></small><noframes id='LET7D'>

                    1. <legend id='LET7D'><style id='LET7D'><dir id='LET7D'><q id='LET7D'></q></dir></style></legend>