Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将使用代表 URL 的标签列表填充一个框架。url 将从列表中输入,数量可以在 3 到 5 之间,由用户决定。使这些 url 可点击的最简单方法是什么,以便用户可以访问显示的网站?有没有比使用标签更好的方法来做到这一点?
谢谢
我认为标签很好。您只需要将回调绑定到鼠标单击。
def open_url(url): pass #Open the url in a browser for i,url in enumerate(url_list): label=tk.Label(frame,text=url) label.grid(row=i) label.bind("<Button-1>",lambda e,url=url:open_url(url))