gpt4 book ai didi

python - 如何处理加载事件?

转载 作者:太空宇宙 更新时间:2023-11-03 15:23:04 25 4
gpt4 key购买 nike

我有一个 load_words 函数,我希望在应用程序启动时执行该函数。

在 C# 中,我将创建以下方法:

private void Form1_Load(object sender, EventArgs e)
{
LoadWords()
}

如何在 Python 中执行此操作?

最佳答案

from tkinter import *

class Application(Frame):

def __init__(self, parent):
self.parent = parent
### put HERE the "onLoad()" code ###
Frame.__init__(self, parent)
# self.create_widgets()

...

def main():
root = Tk()
root.geometry('600x900-0+0') # 120 * 50 ppixels in top right corner of desktop
app = Application(root)
app.master.title('Sample application')

app.mainloop()

if __name__ == '__main__':

main()

另请参阅here有关 tkinter 中事件的更多信息。

祝您编码愉快:)。使用 tkinter 不要失望。您可以在 Python 中使用许多其他 GUI 选项,例如wxPython对于 C# 程序员来说,使用它可能会更容易。

关于python - 如何处理加载事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43377361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com