Python GUI 프로그래밍 tkinter 콤보박스 프로그래스바 메뉴바 메세지박스 프레임 그리드
파이썬 GUI 프로그래밍 방법중 thkinter를 사용한 방법입니다. 8. 콤보박스 import tkinter.ttk as ttk from tkinter import * root = Tk() root.title("Haetae GUI") root.geometry("640x480") values = [str(i)+"일" for i in range(1,32)] combobox = ttk.Combobox(root, height=5, values=values) combobox.pack() combobox.set("결제일") values = [str(i)+"일" for i in range(1,32)] read_combobox = ttk.Combobox(root, height=10, values=values, sta..
Programming
2021. 9. 14. 15:57