第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將下拉列表選項從 tkinter 鏈接到我的網(wǎng)絡(luò)瀏覽器

將下拉列表選項從 tkinter 鏈接到我的網(wǎng)絡(luò)瀏覽器

UYOU 2023-08-22 15:26:09
所以這個程序背后的總體思路只是一個應(yīng)用程序,我可以通過在下拉列表中替換它來在不同類型的網(wǎng)站中搜索它:import webbrowserimport tkinter as tkoptionlist=["youtube","google","amazon","ebay"]root=tk.Tk()root.title("WEB BROWSER")root.geometry("600x200")x=tk.StringVar()variable = tk.StringVar(root)variable.set(optionlist[0])def fb():    webbrowser.open_new("https://www.facebook.com/")def yt():    webbrowser.open_new("https://www.youtube.com/")def ig():    webbrowser.open_new("https://www.instagram.com/")def tw():    webbrowser.open_new("https://twitter.com/")def search():    word=x.get()    search="https://www.google.com/search?q="+word    webbrowser.open_new(search)x=tk.StringVar()b1=tk.Button(root,text="Facebook",fg="white",bg="#3343BA",command=fb)b2=tk.Button(root,text="Youtube",fg="white",bg="#FF0422",command=yt)b3=tk.Button(root,text="Instagram",fg="white",bg="#F7378C",command=ig)b4=tk.Button(root,text="Twitter",fg="white",bg="#12AED8",command=tw)b6=tk.Button(root,text="Search",fg="white",bg="#121011",command=search)b7=tk.OptionMenu(root,variable,*optionlist)b7.config(width=90, font=('Helvetica', 12))b7.pack(side="top")b1.place(x=10,y=70,width=80,height=30)b2.place(x=100,y=70,width=80,height=30)b3.place(x=190,y=70,width=80,height=30)b4.place(x=280,y=70,width=70,height=30)b6.place(x=307,y=10,width=90,height=50)b7.place(x=360,y=70,width=200,height=30)el=tk.Entry(root,textvariable=x)el.place(x=10,y=10,width=300,height=50)labelTest = tk.Label(text="", font=('Helvetica', 12), fg='black')labelTest.pack(side="top")labelTest.place(x=360,y=105)def callback(*args):    labelTest.configure(text="You chose to search in: {}".format(variable.get()))   variable.trace("w", callback)root.mainloop()所以,正如你所看到的,我有一個正在運行的搜索應(yīng)用程序,我制作了一個包含以下內(nèi)容的下拉列表(ebay 亞馬遜谷歌和 youtube),我得到了在每個應(yīng)用程序中搜索的網(wǎng)址,但事實并非如此,我面臨的問題是如何做我將 tkinter 中的選擇綁定到我想要搜索的平臺
查看完整描述

目前暫無任何回答

  • 0 回答
  • 0 關(guān)注
  • 1654 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號