[Python-tkinter] 파이썬 Label 위젯
Label을 이용하여 문자를 생성할 수 있다. 당연히 Label은 이미지 또는 도표, 그림 등도 넣을 수 있다. 몇가지 파라메터를 넣어서 크기, 색, 테두리 등을 설정할 수 있다. w = tk.Label(parent, option, ...) 아래 내용은 YUN DAE HEE 님의 블로그가 잘 정리되어 있으니 참고하기 바라며 TkDocs에 정보가 영문으로 있다. activebackground Background color to be displayed when the mouse is over the widget. activeforeground Foreground color to be displayed when the mouse is over the widget. anchor This options contr..