버튼 위젯에 마우스를 가져가는 동안 툴팁 텍스트를 표시하도록 tkinter 위젯에 설명을 추가하려는 애플리케이션을 생성한다고 가정해 보겠습니다. 툴팁이나 팝업을 추가하여 달성할 수 있습니다.
도구 설명은 사용자 상호 작용이 필요한 응용 프로그램에서 유용합니다. Balloon(win)의 생성자를 인스턴스화하여 툴팁을 정의할 수 있습니다. . 그런 다음 위젯에 적용되는 툴팁 메시지와 버튼을 바인딩할 수 있습니다.
예시
#Import the tkinter library from tkinter import * from tkinter.tix import * #Create an instance of tkinter frame win = Tk() #Set the geometry win.geometry("400x200") #Create a tooltip tip= Balloon(win) #Create a Button widget my_button=Button(win, text= "Python", font=('Helvetica bold', 20)) my_button.pack(pady=20) #Bind the tooltip with button tip.bind_widget(my_button,balloonmsg="Python is an interpreted, high-level and general-purpose programming language") win.mainloop()
출력
위의 코드를 실행하면 버튼이 있는 창이 표시됩니다. 이제 "Python" 버튼에 마우스를 가져가면 툴팁 텍스트가 표시됩니다.