tkinter에서 창이나 창부품의 크기 또는 여백을 지정할때width=100이라고 지정하면 100픽셀(pixel)을 의미하고,width="100m"이라고 지정하면 100미리미터(mm)를 의미한다.1mm는 약3.77pixel과 같다. width, height, padx, pady, ipadx, ipady등 크기 및 여백을 지정하는 속성에서 두가지단위 모두 사용가능하다. 아래 예제에서 생성된 2개의 창은 같은크기이다.01020304050607080910# -*- coding : cp949 -*-from tkinter import * app1=Tk()app1.configure(width="100m",height="100m")app1.mainloop() app2=Tk()app2.configure(width=37..
Python, tkinter 간단히 사용하기 001python3.2.2>> 간단한 창띄우기 packing packing>그릇(containers)와 창부품(widgets)123456789# -*- coding : cp949 -*-from tkinter import * root = Tk() F = Frame(root) #root와 F의 논리적은 부모자식관계 정의F.pack() #F를 packing하여 시각적으로 보여지도록 함 root.mainloop()실행 tkinter의 최소,최대크기를 지정하지 않으면, 창부품의 여부에 따라 창크기가 자동으로 조절된다.6행 : root와 F는 논리적인 부모자식관계가 정의된다.7행 : 논리적인 부모관계에서 시각적인 관계로 설정한다.즉, 어플리케이션에 보여지도록 설정한다. ..
- Total
- Today
- Yesterday
- vba
- Python
- activebackground
- disabledforeground
- Java
- 상수
- Module
- Linux
- ManyToOne
- 리눅스
- FetchType
- 폼
- indicatoron
- Excel
- 파이썬
- borderwidth
- Composite Key
- apache
- command
- onetomany
- fetch join
- JPA
- highlightbackground
- tkinter
- highlightthickness
- activeforeground
- Private
- checkbutton
- IdClass
- tkinter command & bind [명령어묶기와 사건묶기] Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |