python应用程序中,创建按钮时,调用框架类frame的哪一个方法?
1个回答
展开全部
Class A(): #class关键字首字母要小写 def GetEntryValues(): #类中的方法要添加self作为参数,或者使用staticmethod声明成静态函数 InputValue = InputPath.get() print InputValue return InputValue def OpenInputValue(): #类中的方法要添加self作为参数 print "sdsdsd" GetEntryValues() #调用类中方法的时候,如果是实例方法,需要使用self调用,如果是静态方法,需要类名调用 mainFrame = Tk()frame1 = Frame(mainFrame)frame1.pack()InputPath = Entry(frame1)InputPath.pack(side=LEFT)GoButton = Button(frame1, text='open', command=OpenInputValue) #OpenInputValue是类中的方法,需要使用实例或者类名调用GoButton.pack(side=LEFT)mainFrame.mainloop()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询