Python :: tkinter OptionMenu方法在类结构内部不起作用

时间:2017-06-02 15:05:01

标签: python tkinter

EDIT ::

我是使用tkinter的新手,我在使用OptionMenu方法在我的类结构中工作时遇到了问题。如果我在类之外使用Option菜单它工作正常,但由于某种原因,它不喜欢我的类中包含的代码。我正在使用的简化代码如下所示:

from tkinter import *
from tkinter.tix import *

class myClass():

    def __init__(self, master):
        self.master = master
        master.title('option menu test')

        #create tool bar and set custom color
        toolbarColor = '#%02x%02x%02x' % (117, 117, 119)
        self.toolbar = Frame(master, bg=toolbarColor)

        #add instructions button
        self.addInstructionButton = Button(self.toolbar, text='Add Instruction', command=self.addNewFrame)
        self.addInstructionButton.pack(side=LEFT, padx=4, pady=4)

        #pack tool bar
        self.toolbar.pack(side=TOP, fill=X)

        #initialize new frames to add and counters
        self.newInstructionCount = 0
        self.newInstructionFrame = []
        self.instructionCloseButton = []
        self.instructionFrame = Frame(self.master,height=410,width=780)
        self.instructionFrame.pack(side=TOP)

    def addNewFrame(self):
        #create new frame and append
        self.newInstructionFrame.append(Frame(self.instructionFrame, width=785, height=100,bd=1,relief=SUNKEN)) #width and height are pixels
        tempFrame = self.newInstructionFrame
        self.instructionFrame.pack_propagate(False)
        self.instructionFrame.grid_propagate(False)
        self.newInstructionFrame[self.newInstructionCount].pack(side=TOP,fill=X)
        #add drop down menu for modifications
        self.modChoices  = ['option 0',
            'option 1',
            'option 2',
            'option 3',
            'option 4',
            'option 5']
        self.modStringVar = StringVar()

        ##### OPTION MENU ERROR HERE #####
        self.modPopupMenu = OptionMenu(tempFrame,StringVar(),self.modStringVar,self.modChoices[0],*self.modChoices)

        self.modLabel     = Label(self.newInstructionFrame[self.newInstructionCount], text='Option Label')
        self.modLabel.pack(side=LEFT)
        self.modPopupMenu.pack(side=LEFT)
        self.newInstructionCount = self.newInstructionCount+1

## MAIN ##
root = Tk()
runGUI = myClass(root)
root.mainloop()

文件“C:/Users/me/Desktop/myFolder/myProject/GUI_code.py”,第192行,在addNewFrame中

self.modPopupMenu = OptionMenu(tempFrame,StringVar(),self.modStringVar,self.modChoices [0],* self.modChoices)

TypeError: init ()需要2到3个位置参数,但是给出了11个

对此错误的任何帮助或见解将不胜感激!谢谢你的时间!

萨姆

1 个答案:

答案 0 :(得分:0)

您确实覆盖了OptionMenu。通过使用邪恶的通配符导入,您可以使用tix中的OptionMenu从tkinter覆盖OptionMenu。但是您仍在使用tkinter OptionMenu中的语法。使用适当的导入:

import tkinter as tk
from tkinter import tix

然后,如果你想使用tkinter版本:

self.modPopupMenu = tk.OptionMenu(tempFrame,StringVar(),self.modStringVar,self.modChoices[0],*self.modChoices)

BTW tix已弃用,python建议您改用ttk。