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

  • <small id='gz7A9'></small><noframes id='gz7A9'>

  • <legend id='gz7A9'><style id='gz7A9'><dir id='gz7A9'><q id='gz7A9'></q></dir></style></legend>

      1. <tfoot id='gz7A9'></tfoot>
      2. 将变量值从 main.py 传递到 .kv 文件

        时间:2023-10-09

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

        • <small id='BCK4n'></small><noframes id='BCK4n'>

          <tfoot id='BCK4n'></tfoot>
            <tbody id='BCK4n'></tbody>
          • <bdo id='BCK4n'></bdo><ul id='BCK4n'></ul>

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

                  本文介绍了将变量值从 main.py 传递到 .kv 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我试图从 main.py 文件中获取名为 h 的变量的值到我的 .kv 文件中,但我得到的只是一个空白屏幕.

                  I am trying to get value of a variable named h from main.py file to my .kv file, but all I get is a blank screen.

                  这是我的 main.py

                  class ExampleApp(App):
                  
                      def build(self):
                          h="SoME STRING IS HERE "
                          pass
                  
                  if __name__ == "__main__":
                      ExampleApp().run()
                  

                  这是我的 .kv 文件

                  Label:
                      text:root.h.text
                  

                  推荐答案

                  你就是这样做的.

                  python 文件

                  class ExampleApp(App):
                      h="SoME STRING IS HERE "
                      def build(self):
                          self.load_kv('t3.kv')
                  
                  if __name__ == "__main__":
                      ExampleApp().run()
                  

                  kivy 文件

                  Label:
                      text: app.h #Here's the main difference
                  

                  这篇关于将变量值从 main.py 传递到 .kv 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 Kivy GUI 旁边运行 Tornado 事件循环? 下一篇:错误:无法为使用 PEP 517 且无法直接安装的 Kivy 构

                  相关文章

                  最新文章

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

                1. <tfoot id='4vA8K'></tfoot>
                    • <bdo id='4vA8K'></bdo><ul id='4vA8K'></ul>

                  1. <small id='4vA8K'></small><noframes id='4vA8K'>

                    <legend id='4vA8K'><style id='4vA8K'><dir id='4vA8K'><q id='4vA8K'></q></dir></style></legend>