我做了这个GUI:
点击' Run'后,我的主程序启动。
在我的主程序中,我想要在GUI中显示很多打印件,但不知道如何打印。
我在google中看到了一些例子,但是很难理解以及如何将其转换为我的需求,所以:点击“运行”按钮后如何制作一个包含所有打印件的窗口?
代码:
from tkinter import *
from main import *
root = Tk()
root.configure(background="orange")
root.wm_title("Python Project")
label_1 = Label(root, text="Project Name",bg="orange",fg="black")
label_2 = Label(root, text="Site URL Link",bg="orange",fg="black")
entry_1 = Entry(root)
entry_2 = Entry(root)
label_1.grid(row=0,sticky=W)
label_2.grid(row=3333,sticky=W)
entry_1.grid(row=0, column=1, padx=50, ipadx=100)
entry_2.grid(row=3333, column=1, ipadx=100)
def callback():
a1 = entry_1.get()
a2 = entry_2.get()
mmm(a1,a2) # main program
button1 = Button(root,text="Run",command=callback)
button2 = Button(root,text="Quit",command=root.quit)
button1.grid(row=3334, ipadx=15, padx=50, column=1)
button2.grid(row=3335, column=1, ipadx=15, padx=50)
root.mainloop()