我试图在菜单栏命令上单击时显示/包含功能display_srv
,并获取通过按钮 完成
import tkinter as tk
import glob
from tkinter import *
def frame_1():
print("frame 1!")
我试图在框架中显示的功能:
def display_srv():
frame_1 = root.LabelFrame(root, text="Liste Serveurs")
frame_1.grid(row=0, sticky='ew', padx=20, pady=20, ipadx=5, ipady=5)
path = '/home/lst/*.txt'
files=glob.glob(path)
count = 0
for file in files:
with open(file, 'r') as lst_file:
for item in lst_file:
lng = root.Checkbutton(frame_1, variable = item, text=item.rstrip()).grid(row=count//10, column=count%10)
count += 1
文本文件值:
item1
item2
item3
...
item100
获取值的函数:
def getvalue():
print(list(lng.values()))
主要脚本:
root = Tk()
menu = Menu(root)
root.geometry('700x500')
root.title("My menu")
root.config(menu=menu)
testpsimenu = Menu(menu)
menu.add_cascade(label="Test Menu", menu=testpsimenu, font=("Arial", 12))
testpsimenu.add_command(label="Select 1", font=("Arial", 10), command=frame_1)
testpsimenu.add_separator()
testpsimenu.add_command(label="Select 2", font=("Arial", 10), command=display_srv)
psimenu = Menu(menu)
menu.add_cascade(label="PSI Real", menu=psimenu, font=("Arial", 12))
psimenu.add_command(label="Select 1", font=("Arial", 10), command=frame_1)
psimenu.add_separator()
psimenu.add_command(label="Select 2", font=("Arial", 10), command=frame_1)
exitmenu = Menu(menu)
menu.add_cascade(label="Exit", menu=exitmenu, font=("Arial", 12))
exitmenu.add_command(label="Exit", command=root.quit, font=("Arial", 10))
Button(root, text='Done', font=("Arial", 12), command=getvalue).pack(side=RIGHT)
mainloop()
这是错误,当我从菜单testpsi中单击Select2时:
Exception in Tkinter callback
Traceback (most recent call last):
File "/usr/lib64/python3.6/tkinter/__init__.py", line 1702, in __call__
return self.func(*args)
File "./test_menu_7.py", line 13, in display_srv
frame_1 = root.LabelFrame(root, text="Liste Serveurs")
File "/usr/lib64/python3.6/tkinter/__init__.py", line 2098, in __getattr__
return getattr(self.tk, attr)
AttributeError: '_tkinter.tkapp' object has no attribute 'LabelFrame'
非常感谢您的帮助...
答案 0 :(得分:0)
到目前为止,我可以看到2个问题。
tk.
前缀,而不要使用root
。更改这些:
root.LabelFrame
root.Checkbutton
这些:
tk.LabelFrame
tk.Checkbutton
lng
定义为全局变量,以便可以在您的getvalue()
函数中使用它。将此行global lng
添加到display_srv()
的顶部,如下所示:
def display_srv():
global lng
如果您有任何疑问,请告诉我。