- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用条目将文件路径添加到我的应用程序,但每次该条目都返回空字符串
def command1(event):
if entry1.get() == 'localhost' and entry2.get() == 'amine' and entry3.get()=='aze123qsd' and entry4.get()=='GTFS':
top = Toplevel()
top.title("Add a file")
top.geometry("600x300")
text=Label(top ,text="Add the file path")
text.place(relx=0.3 ,rely=0.3)
entry=Entry(top)
entry.place(relx=0.5 ,rely=0.3)
paths=entry.get()
entry.bind('<Return>', commnad3)
button1 = Button(top, text="show the last window")
button1.place(relx=0.55 ,rely=0.7)
button2 =Button(top ,text="Use old data", command=old)
button2.place(relx=0.3 ,rely=0.7)
最佳答案
您的问题是由于您在对该条目执行 get()
的同时创建了该条目。此时您所拥有的只是一个空的输入字段。
您需要在将某些内容放入其中后获取该条目信息。
以这个例子为例,如果您有任何疑问,请告诉我。
import tkinter as tk
root = tk.Tk()
def print_entry(e):
print(e.get())
def command1():
top = tk.Toplevel()
entry = tk.Entry(top)
entry.pack()
tk.Button(top, text="Print Entry", command=lambda: print_entry(entry)).pack()
tk.Button(root, text="TOPLEVEL", command=command1).pack()
root.mainloop()
关于python - 当我在 tkinter 中使用条目时,我得到空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57291610/
我正在尝试创建一个程序,其中字符串的前三个字符重复给定次数,如下所示: foo('Chocolate', 3) # => 'ChoChoCho' foo('Abc', 3) # => 'AbcAbcA
我有以下字符串: std::string str = "Mode:AAA:val:101:id:A1"; 我想分离一个位于 "val:" 和 ":id" 之间的子字符串,这是我的方法: std::st
DNA 字符串可以是任意长度,包含 5 个字母(A、T、G、C、N)的任意组合。 压缩包含 5 个字母(A、T、G、C、N)的 DNA 字母串的有效方法是什么?不是考虑每个字母表 3 位,我们可以使用
是否有一种使用 levenstein 距离将一个特定字符串与第二个较长字符串中的任何区域进行匹配的好方法? 例子: str1='aaaaa' str2='bbbbbbaabaabbbb' if str
使用 OAuth 并使用以下函数使用我们称为“foo”(实际上是 OAuth token )的字符串加密 key public function encrypt( $text ) { // a
我是一名优秀的程序员,十分优秀!