簡體   English   中英

如何將超鏈接添加到 tkinter 按鈕

[英]How to add a hyperlink to a tkinter button

我目前正在 Tkinter 上編寫一些代碼,我想知道它是否可能以及如何將網站超鏈接添加到按鈕。 在我的例子中,我試圖通過 Tkinter 在 Python 3 上將 Caldicot School web 地址添加到一個按鈕,當它被點擊時,它會把你送到那里

歡迎來到SO!

此頁面包含創建按鈕的方法,該按鈕的作用類似於tkinter中的超鏈接http://code.activestate.com/recipes/580774-tkinter-link-or-hyperlink-button/

該代碼的主要部分如下:

if __name__ == "__main__":
    import webbrowser

    try:
        from Tkinter import Tk, Frame
    except ImportError:
        from tkinter import Tk, Frame    

    def callback():
        webbrowser.open_new(r"http://www.google.com")

    root = Tk()
    frame = Frame(root, bg="white")
    frame.pack(expand=True, fill="both")

    # Creates a button that, when clicked, calls the function that sends you to your hyperlink.
    link = Link_Button(frame, text="Google Hyperlink", action=callback)
    link.pack(padx=10, pady=10)
    root.mainloop()

在上面的網站上查看類Link_Button后面的代碼。 萬一鏈接消失,下面是其余的代碼:

# Author: Miguel Martinez Lopez

try:
    from Tkinter import Label
    from ttk import Style
    from tkFont import Font, nametofont
except ImportError:
    from tkinter import Label
    from tkinter.ttk import Style
    from tkinter.font import Font, nametofont

def get_background_of_widget(widget):
    try:
        # We assume first tk widget
        background = widget.cget("background")
    except:
        # Otherwise this is a ttk widget
        style = widget.cget("style")

        if style == "":
            # if there is not style configuration option, default style is the same than widget class
            style = widget.winfo_class()

        background = Style().lookup(style, 'background')

    return background

class Link_Button(Label, object):
    def __init__(self, master, text, background=None, font=None, familiy=None, size=None, underline=True, visited_fg = "#551A8B", normal_fg = "#0000EE", visited=False, action=None):
        self._visited_fg = visited_fg
        self._normal_fg = normal_fg

        if visited:
            fg = self._visited_fg
        else:
            fg = self._normal_fg

        if font is None:
            default_font = nametofont("TkDefaultFont")
            family = default_font.cget("family")

            if size is None:
                size = default_font.cget("size")

            font = Font(family=family, size=size, underline=underline)

        Label.__init__(self, master, text=text, fg=fg, cursor="hand2", font=font)

        if background is None:
            background = get_background_of_widget(master)

        self.configure(background=background)

        self._visited = visited
        self._action = action

        self.bind("<Button-1>", self._on_click)

    @property
    def visited(self):
        return self._visited

    @visited.setter
    def visited(self, is_visited):
        if is_visited:
            self.configure(fg=self._visited_fg)
            self._visited = True
        else:
            self.configure(fg=self._normal_fg)
            self._visited = False

    def _on_click(self, event):
        if not self._visited:
            self.configure(fg=self._visited_fg)

        self._visited = True

        if self._action:
            self._action()

您基本上可以添加此方法:

from tkinter import *
from tkinter import ttk
import webbrowser

root = Tk()
root.title = 'Link Button'
def link():
    webbrowser.open_new(r"https://www.python.org")

然后將方法鏈接到按鈕:

nut = ttk.Button(root, text='Link Button', command=link)
nut.pack()
root.mainloop()
import tkinter
import webbrowser

root = Tk()
root.title = 'link to the button'
def link():
    webbrowser.open_new(r"https://www.python.org")

nut = ttk.Button(root, text='link to the button')
nut.pack()
root.mainloop() 

然后只需簡單地使用

nut = ttk.Button(root, text= 'link to the button', command=link)
nut.pack()
root.mainloop()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM