# 便携工具箱
https://www.123pan.com/s/Z3kujv-u4rPA
提取码:O7pr
全部免安装,绿色软件,方便携带
python代码:
def app_up(name):
path = './DADA/'+str(name)+'/'+str(name)+'.exe'
os.system('start %s'%path)
# 应用-----------------------------------------------
Chrome = PhotoImage(file="./DADA/png/Chrome.png")
chromex360 = PhotoImage(file="./DADA/png/chromex360.png")
EdrawMax = PhotoImage(file="./DADA/png/EdrawMax.png")
IDMan = PhotoImage(file="./DADA/png/IDMan.png")
Label(root,text='应用',font=('微软雅黑',10)).grid(row=0,column=0,columnspan=2,sticky=W)
Button(root,image=Chrome,compound=LEFT,text="chrome\n浏览器",height=50, width=100,relief='groove',command=lambda:app_up('Chrome')).grid(row=1,column=0)
Button(root,image=chromex360,compound=LEFT,text="360\n浏览器",height=50, width=100,relief='groove',command=lambda:app_up('chromex360')).grid(row=1,column=1)
Button(root,image=EdrawMax,compound=LEFT,text="思维导图",height=50, width=100,relief='groove',command=lambda:app_up('EdrawMax')).grid(row=1,column=2)
Button(root,image=IDMan,compound=LEFT,text="IDMan",height=50, width=100,relief='groove',command=lambda:app_up('IDMan')).grid(row=1,column=3)