Python,tkinter 입문
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행 : 논리적인 부모관계에서 시각적인 관계로 설정한다.즉, 어플리케이션에 보여지도록 설정한다. ..
Python/tkinter
2016. 5. 25. 18:48
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Module
- ManyToOne
- 폼
- vba
- checkbutton
- Linux
- indicatoron
- Excel
- FetchType
- JPA
- tkinter command & bind [명령어묶기와 사건묶기] Python
- highlightbackground
- Composite Key
- apache
- 상수
- highlightthickness
- 파이썬
- fetch join
- 리눅스
- activeforeground
- Java
- activebackground
- Private
- tkinter
- onetomany
- Python
- command
- IdClass
- borderwidth
- disabledforeground
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함