如何在Tkinter中使用Label
创建超链接?
快速搜索没有透露如何执行此操作。相反,只有解决方案可以在Text
小部件中创建超链接。
答案 0 :(得分:24)
将标签绑定到"<Button-1>"
事件。引发时会执行callback
,导致默认浏览器中的新页面打开。
from tkinter import *
import webbrowser
def callback(url):
webbrowser.open_new(url)
root = Tk()
link1 = Label(root, text="Google Hyperlink", fg="blue", cursor="hand2")
link1.pack()
link1.bind("<Button-1>", lambda e: callback("http://www.google.com"))
link2 = Label(root, text="Ecosia Hyperlink", fg="blue", cursor="hand2")
link2.pack()
link2.bind("<Button-1>", lambda e: callback("http://www.ecosia.org"))
root.mainloop()
您还可以通过将回调更改为:
来打开文件webbrowser.open_new(r"file://c:\test\test.csv")
答案 1 :(得分:7)
或者,如果您有多个标签并且想要一个功能。假设您将链接作为文本
import tkinter as tk
import webbrowser
def callback(event):
webbrowser.open_new(event.widget.cget("text"))
root = tk.Tk()
lbl = tk.Label(root, text=r"http://www.google.com", fg="blue", cursor="hand2")
lbl.pack()
lbl.bind("<Button-1>", callback)
root.mainloop()
答案 2 :(得分:1)
PyPi called tkhtmlview(pip install tkhtmlview
)上有一个模块可以在tkinter中支持HTML。它仅支持某些标签,但在页面上表示完全支持fro标签(超链接的锚标签),并支持href属性。它需要具有tcl / tk(tkinter)支持的Python 3.4或更高版本以及Pillow 5.3.0模块。我还没有尝试过该标签,但是我总体上尝试了该模块,它可以工作。
例如:
import tkinter as tk
from tkhtmlview import HTMLLabel
root = tk.Tk()
html_label=HTMLLabel(root, html='<a href="http://www.google.com"> Google Hyperlink </a>')
html_label.pack()
root.mainloop()
答案 3 :(得分:1)
您可以简单地导入 webbrowser,添加一个函数并在按钮内部调用它。声明您的布局管理器。代码如下所示:
import tkinter
import webbrowser
def callback():
webbrowser.open_new("https://www.google.com/")
your_variable_name = tkinter.Button(text="button_name", command=callback)
your_variable_name.grid(column=2, row=3)
仅供参考。它将在计算机的默认浏览器中打开
答案 4 :(得分:0)
您可以创建一个继承自tkinter模块的标签小部件的类,并使用其他值(包括链接)初始化它。 然后创建它的一个实例,如下所示。
import tkinter as t
import webbrowser
class Link(t.Label):
def __init__(self, master=None, link=None, fg='grey', font=('Arial', 10), *args, **kwargs):
super().__init__(master, *args, **kwargs)
self.master = master
self.default_color = fg # keeping track of the default color
self.color = 'blue' # the color of the link after hovering over it
self.default_font = font # keeping track of the default font
self.link = link
""" setting the fonts as assigned by the user or by the init function """
self['fg'] = fg
self['font'] = font
""" Assigning the events to private functions of the class """
self.bind('<Enter>', self._mouse_on) # hovering over
self.bind('<Leave>', self._mouse_out) # away from the link
self.bind('<Button-1>', self._callback) # clicking the link
def _mouse_on(self, *args):
"""
if mouse on the link then we must give it the blue color and an
underline font to look like a normal link
"""
self['fg'] = self.color
self['font'] = self.default_font + ('underline', )
def _mouse_out(self, *args):
"""
if mouse goes away from our link we must reassign
the default color and font we kept track of
"""
self['fg'] = self.default_color
self['font'] = self.default_font
def _callback(self, *args):
webbrowser.open_new(self.link)
root = t.Tk()
root.title('Tkinter Links !')
root.geometry('300x200')
root.configure(background='LightBlue')
URL = 'www.python.org'
link = Link(root, URL, font=('sans-serif', 20), text='Python', bg='LightBlue')
link.pack(pady=50)
root.mainloop()