我刚刚进入 Python GUI 并且正在测试不同的东西,因为这似乎有助于我更轻松地学习(反复试验)。我正在尝试的一件事是插入来自不同班级的消息。老实说,我不知道我会用这个做什么,但我只是为了尝试而尝试。
# Hello World
# Displays "Hello World!" in a text box.
from tkinter import *
class myClass(object):
def myMethod():
print("Hello World!")
class Application(Frame):
""" GUI application which can reveal the secret of longevity. """
def __init__ (self, master):
super(Application, self).__init__(master)
self.grid()
self.createWidgets()
def createWidgets(self):
# Create a text box
self.txtBox = Text(self, width = 300, height = 300, wrap = WORD)
self.txtBox.grid(row = 0, column = 0, sticky = W)
# display message
message = myClass.myMethod
self.txtBox.insert(0.0, message)
# main
root = Tk()
root.title("My Title")
root.geometry("500x500")
app = Application(root)
root.mainloop()
当我运行 .py 文件时,我得到了 GUI,然后是一个框,上面写着<function myClass.myMethod at 0x0000000002A1C6A8>
- 如果我没记错的话,这意味着 myMethod 存储在内存中。
所以我曾经message = myClass.myMethod()
认为这会输出“Hello World!” - 相反,我得到一个错误。起初,它是类似物体的东西。init不接受参数或类似的东西(很抱歉,因为我无法重新创建错误) - 现在我得到了tkinter.TclError: wrong # args: should be "43128536.43105360 insert index chars ?tagList chars tagList...?
这可能有“Hello World!”吗?从另一个类,在 GUI 文本框中打印?
另外,当我查看代码时,我很好奇。目的是app = Application(root)
什么?当我没有它时,我会得到一个空白的 GUI。但是,我没有看到它实际上调用 app 来执行任何操作,而不是将其设置为等于Application(root)
.