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 |
Tags
- 모의 랜섬웨어
- GUI
- python 예제
- justify
- Python
- AES
- 재생목록
- Tkinter
- Tkinter Label
- aes 암호화
- pycrypto
- 파이썬
- compound
- textvariable
- customtkinter
- aes 복호화
- pytube
- RSA
- 랜섬웨어
- 복호화
- 클래스카드
- 클래스카드 매크로
- classcard
- 자동화
- 정보보안
- Python GUI
- Selenium
- anchor
- 음원추출
- classcard 매칭게임
Archives
- Today
- Total
목록BIND (1)
파이썬이 제일 쉬워
[Python/Customtkinter] 너무나도 쉬운 Customtkinter Label(CTkLabel) 부셔먹기
지난번에 이어 이번엔 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