Python tkinter 강좌 : 제 3강 - Button
Button(버튼)
Button
을 이용하여 메서드
또는 함수
등을 실행시키기 위한 단추
를 생성할 수 있습니다.
Button 사용
tkinter.Button(윈도우 창, 매개변수1, 매개변수2, 매개변수3, ...)
을 사용하여 해당 윈도우 창
에 표시할 버튼의 속성
을 설정할 수 있습니다.
매개변수
를 사용하여 버튼의 속성
을 설정합니다.
매개변수 중 command
를 이용하여 사용자 정의 함수 : countUP
을 실행시킬 수 있습니다.
Button Method
이름 | 의미 |
---|---|
invoke() | 버튼 실행 |
flash() | 깜빡임 |
-
Tip :
invoke()
: 버튼을 클릭했을 때와 동일한 실행 -
Tip :
flash()
:normal
상태 배경 색상과active
상태 배경 색상 사이에서 깜빡임
Button Parameter
버튼 문자열 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
text | 버튼에 표시할 문자열 | - | - |
textvariable | 버튼에 표시할 문자열을 가져올 변수 | - | - |
anchor | 버튼안의 문자열 또는 이미지의 위치 | center | n, ne, e, se, s, sw, w, nw, center |
justify | 버튼의 문자열이 여러 줄 일 경우 정렬 방법 | center | center, left, right |
wraplength | 자동 줄내림 설정 너비 | 0 | 상수 |
버튼 형태 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
width | 버튼의 너비 | 0 | 상수 |
height | 버튼의 높이 | 0 | 상수 |
relief | 버튼의 테두리 모양 | flat | flat, groove, raised, ridge, solid, sunken |
overrelief | 버튼에 마우스를 올렸을 때 버튼의 테두리 모양 | raised | flat, groove, raised, ridge, solid, sunken |
borderwidth=bd | 버튼의 테두리 두께 | 2 | 상수 |
background=bg | 버튼의 배경 색상 | SystemButtonFace | color |
foreground=fg | 버튼의 문자열 색상 | SystemButtonFace | color |
padx | 버튼의 테두리와 내용의 가로 여백 | 1 | 상수 |
pady | 버튼의 테두리와 내용의 세로 여백 | 1 | 상수 |
버튼 형식 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
bitmap | 버튼에 포함할 기본 이미지 | - | info, warning, error, question, questhead, hourglass, gray12, gray25, gray50, gray75 |
image | 버튼에 포함할 임의 이미지 | - | - |
compound | 버튼에 문자열과 이미지를 동시에 표시할 때 이미지의 위치 | none | bottom, center, left, none, right, top |
font | 버튼의 문자열 글꼴 설정 | TkDefaultFont | font |
cursor | 버튼의 마우스 커서 모양 | - | 커서 속성 |
버튼 상태 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
state | 상태 설정 | normal | normal, active, disabled |
activebackground | active 상태일 때 버튼의 배경 색상 | SystemButtonFace | color |
activeforeground | active 상태일 때 버튼의 문자열 색상 | SystemButtonText | color |
disabledforeground | disabeld 상태일 때 버튼의 문자열 색상 | SystemDisabledText | color |
버튼 하이라이트 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
highlightcolor | 버튼이 선택되었을 때 색상 | SystemWindowFrame | color |
highlightbackground | 버튼이 선택되지 않았을 때 색상 | SystemButtonFace | color |
highlightthickness | 버튼이 선택되었을 때 두께 (두께 설정) | 0 | 상수 |
버튼 동작 설정
이름 | 의미 | 기본값 | 속성 |
---|---|---|---|
takefocus | Tab 키를 이용하여 위젯 이동 허용 여부 | True | Boolean |
command | 버튼이 active 상태일 때 실행하는 메서드(함수) | - | 메서드, 함수 |
repeatdelay | 버튼이 눌러진 상태에서 command 실행까지의 대기 시간 | 0 | 상수(ms) |
repeatinterval | 버튼이 눌러진 상태에서 command 실행의 반복 시간 | 0 | 상수(ms) |
참고
-
cursor 매개변수
- arrow, based_arrow_down, based_arrow_up, boat, bogosity, bottom_left_corner, bottom_right_corner, bottom_side, bottom_tee, box_spiral, center_ptr, circle, clock, coffee_mug, cross, cross_reverse, crosshair, diamond_cross, dot, dotbox, double_arrow, draft_large, draft_small, draped_box, exchange, fleur, gobbler, gumby, hand1, hand2, heart, icon, iron_cross, left_ptr, left_side, left_tee, leftbutton, ll_angle, lr_angle, man, middlebutton, mouse, pencil, pirate, plus, question_arrow, right_ptr, right_side, right_tee, rightbutton, rtl_logo, sailboat, sb_down_arrow, sb_h_double_arrow, sb_left_arrow, sb_right_arrow, sb_up_arrow, sb_v_double_arrow, shuttle, sizing, spider, spraycan, star, target, tcross, top_left_arrow, top_left_corner, top_right_corner, top_side, top_tee, trek, ul_angle, umbrella, ur_angle, watch, wait, xterm, X_cursor
- 기본 설정은
normal
상태의 설정을 의미함 (bg
,fg
등의 설정)
highlightbackground
를 설정하였을 경우, 버튼이 선택되지 않았을 때에도 두께가 표시됨
-
repeatdelay=100
일 경우, 누르고 있기 시작한 0.1초 후에command
가 실행됨 -
repeatdelay=1000
,repeatinterval=100
일 경우, 1초 후에 command가 실행되며 0.1초마다 버튼을 뗄 때까지command
가 계속 실행됨 -
repeatinterval
매개변수는repeatdelay
매개변수와 같이 사용해야함
댓글 남기기