菜鸟IT的博客 >> Python
tkinter 点击label打开网址 | 点击按钮打开网页
# 首先需要导入webbrowser模块
import webbrowser
# 建立窗口window
window = tk.Tk()
# 给窗口的可视化起名字
window.title('label超链接')
# 设置窗口的居中显示
screenwidth = window.winfo_screenwidth()
screenheight = window.winfo_screenheight()
width = 700
height = 150
size = "%dx%d+%d+%d" % (width, height, (screenwidth - width) / 2, (screenheight - height) / 2)
# 设定窗口的大小(长 * 宽)
window.geometry(size)
# 设置label标签
link = tk.Label(window, text='点击购买高级版本: www.baidu.com', font=('Arial', 10))
link.place(x=20, y=130)
# 此处必须注意,绑定的事件函数中必须要包含event参数
def open_url(event):
webbrowser.open("http://www.baidu.com", new=0)
# 绑定label单击时间
link.bind("<Button-1>", open_url)
菜鸟IT博客[2022.11.19-22:33] 访问:296