Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬
- Python GUI
- classcard 매칭게임
- pytube
- AES
- 모의 랜섬웨어
- 타이핑웍스
- 오블완
- 티스토리챌린지
- Tkinter Label
- textvariable
- aes 복호화
- 자동화
- typingworks
- GUI
- 랜섬웨어
- 셀레니움
- pycrypto
- classcard
- Selenium
- 클래스카드 매크로
- justify
- customtkinter
- Tkinter
- 클래스카드
- Python
- 음원추출
- aes 암호화
- python 예제
- 재생목록
Archives
- Today
- Total
목록textvariable (1)
Develog

지난번에 이어 이번엔 Customtkinter의 위젯들을 하나씩 살펴봅시다.첫째로는 가장 기본이 되는 Label에 대해 알아볼겁니다. 목차textvariableanchorcompoundjustify.bind() 가장 기본적인 형태는 import customtkinter customtkinter.set_appearance_mode("dark") customtkinter.set_default_color_theme("dark-blue") app = customtkinter.CTk() app.geometry("500x500") app.title("라벨") label = customtkinter.CTkLabel(master=app, text="이건 라벨입니다.") label.grid(row=0, col..
Python
2024. 6. 12. 19:42