|
获取python编译的EXE文件
窗口组件里面的内容,比如我需要获取
如图片所示文本框1,2,然后发按钮点击命令,等待python执行命令后再获取文本框3的内容。这好像是自绘窗口,我用了自绘解析页获取不到其内容呢。
感谢,由于python编译出来的EXE文件包含运行环境,所以较大,就没有发EXE了,下面是python编译前的源代码。
感谢大神指导!
import tkinter
windows=tkinter.Tk()
windows.title('欢迎进入')
Text_1=tkinter.Text (windows,font=('微软雅黑',9),width=100,height=2)
Text_1.insert('end', '我是Text1')
Text_1.pack()
Text_2=tkinter.Text (windows,font=('微软雅黑',9),width=100,height=2)
Text_2.insert('end', '我是Text2')
Text_2.pack()
Text_3 =tkinter.Text (windows, font=('微软雅黑', 9), width=100,height=4)
Text_3.pack()
def push():
Text_3.insert('end', Text_1.get("0.0","end")+"+"+Text_2.get("0.0","end").replace("\n","").replace(" ",""))
button_1=tkinter.Button(windows,text='cha询',width=10,height=1,command=push)
button_1.pack()
windows.mainloop()
|
|