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

PHPz
发布: 2024-02-06 10:57:12
转载
517人浏览过

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

问题内容

我试图让按钮返回我在“条目”字段中输入的任何值,但它始终返回 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 文件:

笔目鱼英文论文写作器
笔目鱼英文论文写作器

写高质量英文论文,就用笔目鱼

笔目鱼英文论文写作器 87
查看详情 笔目鱼英文论文写作器
<?xml version='1.0' encoding='utf-8'?>
<tkinter.Tk
    xmlns:attr="http://www.hoversetformationstudio.com/styles/" 
    xmlns:layout="http://www.hoversetformationstudio.com/layouts/" 
    name="tk_1" 
    attr:layout="place" 
    layout:width="300" 
    layout:height="233" 
    layout:x="30" 
    layout:y="30">
        <meth name="title">
        <arg value="title" />
        </meth>
        <meth name="geometry">
        <arg value="300x200+0+0" />
        </meth>
        <meta major="6" minor="2" name="version" />
    <tkinter.StringVar attr:name="expr_var" attr:value="" />
    <tkinter.Entry 
        name="entry_1" 
        attr:textvariable="expr_var"
        layout:width="200" 
        layout:height="25" 
        layout:x="50" 
        layout:y="35" 
        layout:bordermode="outside" />
    <tkinter.Label
        name="result" 
        layout:width="200" 
        layout:height="25" 
        layout:x="50" 
        layout:y="74" 
        layout:bordermode="outside" />
    <tkinter.Button name="calculate" attr:text="button_1" layout:width="80" layout:height="25" layout:x="110" layout:y="133" layout:bordermode="outside">
        <event sequence="<Button-1>" handler="calculate" add="False" />
    </tkinter.Button>
</tkinter.Tk>
登录后复制

我使用 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 条目返回默认值,而不是输入的值的详细内容,更多请关注php中文网其它相关文章!

相关标签:
xml
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:stackoverflow网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门推荐
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号