<legend id='CKZ15'><style id='CKZ15'><dir id='CKZ15'><q id='CKZ15'></q></dir></style></legend>
  • <small id='CKZ15'></small><noframes id='CKZ15'>

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

          <bdo id='CKZ15'></bdo><ul id='CKZ15'></ul>
      1. 如何使用 Kivy 获取文本输入的值

        How to get value of textinput with Kivy(如何使用 Kivy 获取文本输入的值)
          <tbody id='VQZNj'></tbody>

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

                  本文介绍了如何使用 Kivy 获取文本输入的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我是 Kivy 的新手,由于我无法在 PySide 上练习(一些动态库损坏或者我不知道是什么),我想试试这个巨大的工具.

                  I'm new to Kivy and as i'm not able to practice on PySide (some dynamic libraries broken or i don't know what) i want to try this huge tool.

                  我现在迷路了,我试着这样做:在 Kivy 应用中获取文本输入值

                  I'm lost right now, i tried to do like this : Get textinput value in Kivy app

                  但我不这样做:

                  <ProduitScreen>:
                      GridLayout:
                          rows: 3
                          cols: 2
                          padding: 10
                          spacing: 10
                          Label:
                              font_size: 20
                              text: 'Nom du produit'
                          TextInput:
                              font_size: 20
                              id: nom
                          Label:
                              font_size: 20
                              text: 'Prix'
                          TextInput:
                              font_size: 20
                              id: prix
                          Button:
                              text: 'Ajouter'
                              on_press: self.ajouter()
                          Button:
                              text: 'Quitter'
                              on_press: root.manager.current = 'menu'
                  

                  因此,带有Ajouter"字段文本的按钮必须允许我获取两个字段的值并将它们添加到列表中,但是:

                  So, the Button with the field text filled with 'Ajouter' has to permit me to get the value of both fields and add them into a list but :

                  AttributeError: 'Button' object has no attribute 'ajouter'
                  

                  在我的课堂上是这样定义的:

                  And in my class it's defined like that :

                  class ProduitScreen(Screen):
                      def ajouter():
                          print "%s au prix de %d a ete ajoute" % (self.nom.txt , float(self.prix.txt))
                  

                  有人能告诉我怎么做吗?

                  Does someone can tell me how to do that ?

                  blackquote 不保存缩进,所以有完整的代码 http://pastebin.com/W1WJ8NcL

                  EDIT : The blackquote doesn't save the indentation so there is the full code http://pastebin.com/W1WJ8NcL

                  推荐答案

                  ajouter 方法是 ProduitScreen 的成员而不是 Button 所以你应该使用 root 来引用它:

                  ajouter method is a member of ProduitScreen not Button so you should use root to refer to it:

                      Button:
                          text: 'Ajouter'
                          on_press: root.ajouter()
                  

                  同时解决您对 ajouter 的定义的问题:

                  Also fix issues on your definition of ajouter:

                  class ProduitScreen(Screen):
                      def ajouter(self):
                          print "%s au prix de %f a ete ajoute" % (self.nom.text , float(self.prix.text))
                  

                  为了在 Python 代码中使用 nomprix,请将其添加到 kv 代码中:

                  In order to use nom and prix inside your python code, add this to kv code:

                  <ProduitScreen>:
                      nom: nom
                      prix: prix
                  

                  这篇关于如何使用 Kivy 获取文本输入的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                    <legend id='wCyfX'><style id='wCyfX'><dir id='wCyfX'><q id='wCyfX'></q></dir></style></legend>

                      <bdo id='wCyfX'></bdo><ul id='wCyfX'></ul>
                          <tbody id='wCyfX'></tbody>

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

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