返回顶部
首页 > 资讯 > 精选 >Tkinter 条目返回默认值,而不是输入的值
  • 123
分享到

Tkinter 条目返回默认值,而不是输入的值

2024-02-06 11:02:37 123人浏览 八月长安
摘要

问题内容 我试图让按钮返回我在“条目”字段中输入的任何值,但它始终返回 xml 文件中设置的默认值。该程序在报告值时似乎忽略了我在框中输入的内容。 这是我的代码:from tkinte

问题内容

我试图让按钮返回我在“条目”字段中输入的任何值,但它始终返回 xml 文件中设置的默认值。该程序在报告值时似乎忽略了我在框中输入的内容。

这是我的代码:

from tkinter import *
import tkinter as tk
from fORMation import appbuilder

root = tk.tk()
root.withdraw()

app = appbuilder(path="calculator.xml")

def calculate(event=none):
    # event parameter needs to be there because using the bind method passes an event object
    # access the expr_var we created earlier to determine the current expression entered
    expr = app.expr_var.get()

    # evaluate the expression
    try:
        result = expr
    except exception:
        # if the expression entered was malformed and could not be evaluated
        # we will display an error message instead
        result = "invalid expression"

    # display the result
    app.result.config(text=result)


app.connect_callbacks(globals())

app.mainloop()

这将调用包含以下代码的 xml 文件:



        
        
        
        
        
        
        
    
    
    
    
        
    

我使用 formationstudio 构建 tkinter gui。 我不确定我做错了什么,或者我是否应该采取完全不同的方法。

正确答案

这是因为tk()有两个实例:

  • 您明确创建的
  • 隐式创建的 appbuilder

删除显式创建的实例。

from formation import AppBuilder

app = AppBuilder(path="calculator.xml")

def calculate(event=None):
    # event parameter needs to be there because using the bind method passes an event object
    # access the expr_var we created earlier to determine the current expression entered
    expr = app.expr_var.get()

    # evaluate the expression
    try:
        result = expr
    except Exception:
        # if the expression entered was malformed and could not be evaluated
        # we will display an error message instead
        result = "Invalid expression"

    # display the result
    app.result.config(text=result)


app.connect_callbacks(globals())

app.mainloop()

以上就是Tkinter 条目返回默认值,而不是输入的值的详细内容,更多请关注编程网其它相关文章!

--结束END--

本文标题: Tkinter 条目返回默认值,而不是输入的值

本文链接: https://lsjlt.com/news/561457.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作