[Python] 프로그램에 서명 넣기

[python] 07_서명넣기

enter image description here

[Python] 프로그램에 서명 넣기

사실 딱히 유용한건 아니고 python으로 간단한 프로그램 만들 때 마다 서명 넣는게 귄찮아서
기록으로 남겨둔다.

코드에 다음과 같이 추가하면 된다.(서명 위치는 원하는 위치로 변경 필요)

class MacroKeySettingsApp:
    def __init__(self, root):
        # 링크와 서명 추가
        self.add_signature_labels()

    def add_signature_labels(self):
        label_blog = tk.Label(self.root, text="Visit blog for the latest and more", fg="blue", cursor="hand2")
        label_blog.grid(row=11, column=0, columnspan=2, padx=10, pady=5, sticky="nsew")
        label_blog.bind("<Button-1>", lambda event: self.open_link("https://maduinos.blogspot.com/search/label/MaduKey"))

        label_maker = tk.Label(self.root, text="Made By Maduinos", fg="blue", cursor="hand2")
        label_maker.grid(row=12, column=0, columnspan=2, padx=10, pady=5, sticky="nsew")
        label_maker.bind("<Button-1>", lambda event: self.open_link("https://maduinos.blogspot.com/"))

    def open_link(self, url):
        import webbrowser
        webbrowser.open_new(url)

간단하게 서명을 추가할 수 있다.

끝. :)

도움이 되셨다면 더 좋은 정보 공유를 위해 광고 클릭 부탁 드립니다 :)

댓글 쓰기

0 댓글