问题标签 [tkinter-entry]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Python Tkinter - 如何使用 entry.get() 从条目中放置输入
我有一个名为“用户名”的条目。
和一个提交按钮
它调用 getInfo 函数
我想将用户作为标签。我可以很好地打印它,文本显示在控制台中。当我尝试放置时,出现错误。
python - Python:有没有办法为 Entry 字段设置默认值?
有没有办法让 GUI 中的文本框具有默认文本显示?
我希望文本框有“请设置您想要的文件的路径...... ”但是,当我运行它时 - 它是空白的......
我的代码如下:
python - 带有条目的 Tkinter 列表框
有没有办法让 Tkinter 列表框的项目成为条目小部件?结果将是您可以动态修改列表框条目中的文本。如果您的列表框看起来像:
那么您可能希望能够单击 Apple 并编写一些任意文本 - 然后您可以绑定 Enter 键,例如,触发基于新文本的功能。
python - 在 tkinter python 中的输入框旁边打包标签
我有一个窗口提示用户输入他们的日志文件的目录。但是,我的标签似乎装在我的输入框顶部。关于如何并排包装它们的任何想法?
python - 如何捕获从 tkinter 中的空条目小部件生成的 ValueError
在下面的代码中,我设法部分验证了输入到 self.e2 条目小部件中的数据,不幸的是,如果条目小部件为空并且按下了提交按钮,则会生成 ValueError”ValueError: invalid literal for int() with base 10: '' " 我想让程序识别 e2 条目小部件为空,捕获 ValueError 并将焦点返回到条目小部件。
我试图使用 is_valid_int 和 invalid_int 方法来做到这一点,但这不起作用。
python - Entry widget not returning expected string
I'm writing a small program that's supposed to find the longest sentence in a text file.
I keep reading my code but I don't get why it's not working.
The program is using an Entry
widget.
Basically the search()
function handles a few exceptions (this part is working) and if you enter a valid file name, it jumps over to the while
loop.
The while loop reads every line and assigns the longest to longest
.
As soon as it reaches an empty line, the elif
statement is executed (or should be).
It's supposed to display the longest sentence in the Entry
widget.
The problem is nothings shows up in the entry widget in the end.
I'm using Python 3 on Windows.
Here is my code:
python - 如何将在 Tk 条目小部件上输入的值存储在变量中
当有人将某些东西放入 GUI 输入字段时,我希望他们放入输入框中的任何内容都存储在变量中。运行程序时也没有显示井号,这是为什么呢?
python - Tkinter 中的 validatecommand——循环验证?
这是我到目前为止所拥有的
然后 checkForInt() 函数定义为
输入框是一个偶数,并且只有一个数字;不是字符。如果输入了一个字符,它就会被拒绝。这只会工作一次。如果输入了字符,则不拒绝作为输入的下一个键击。
如果有人能告诉我如何让它永久检查以确保字符串是一个数字,并且是一个偶数,那将不胜感激。
如果有任何帮助,这是我收到的错误消息
python - 在 Python 2.5 中需要有关 Entry Tkinter 的帮助
有没有办法让 Tkinter 中的条目在您在字段中键入时做出反应?我想要代码的“数量”部分使用此功能。
它会在单击单选按钮时自动生成 label4text,但在输入数量时不会。
python - 从 Tkinter.Entry 写入字符串变量
我正在使用 Python 2.5(用于 Autodock)。我制作了一个简单的 GUI 来从用户那里获取值,我正在尝试使用所述值生成输出文件,但我不断收到错误消息,例如:“TypeError:参数 1 必须是字符串或只读字符缓冲区,而不是实例”这是我的一些代码:
我已经包含了相关的代码。