繁体   English   中英

Tkinter 模块 - 任务栏未显示

[英]Tkinter module - taskbar not showing up

有谁知道为什么它不会在我的代码中显示任务栏。 我试图让顶部在文件下拉菜单中说退出和信息。 我是 tkinter 的新手,我只需要一些帮助。 另外,如果您对如何改进它有任何建议,我将不胜感激!

我的代码如下:

from time import sleep
from tkinter import * 
from tkinter import messagebox, ttk, Tk

root = Tk()

class GUI():

    def taskbar(self):

        menu = Menu(root)
        file = Menu(menu)
        file.add_command(label="Exit", command=self.exit_GUI)
        file.add_command(label = "Information", command=self.info_popup)        

   def Main_Menu(self):

        topFrame = Frame(root)
        topFrame.pack()
        bottomFrame = Frame(root)
        bottomFrame.pack(side=BOTTOM)

        Income_button = Button(topFrame, text="Enter your incomes", command=self.Income)
        Expense_button = Button(topFrame, text="Enter your expenses", command=self.Expense)
        Total_button = Button(bottomFrame, text="View Results", command=self.Total)
        Income_button.pack()
        Expense_button.pack()
        Total_button.pack()

    def Income(self):
        pass

    def Expense(self):
        pass

    def Total(self):
        pass

    def exit_GUI(self):
        exit()

    def info_popup(self):
        pass

g = GUI()
g.taskbar()
g.Main_Menu()
g.Income()
g.Expense()
g.Total()
g.info_popup()

root.mainloop()

您需要将taskbar功能更改为:

def taskbar(self):

    menu = Menu(root)
    file = Menu(menu)
    file.add_command(label="Exit", command=self.exit_GUI)
    file.add_command(label = "Information", command=self.info_popup) 
    root.config(menu=file)

这将告诉窗口使用菜单栏。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM