파이썬 GUI 프로그래밍 5 Tkinter Menu, MenuButton,ComboBox,ListBox,TopLevel
MENU 메뉴 위젯은 메뉴에 메뉴 그룹을 추가하는 방식으로 되어있다. 파일 메뉴가 있으면, [신규, 저장, 열기 ... ] 이렇게 묶어서 계층을 만든다. 그밖에는 다른 위젯들과 비슷한 방식을 따른다. 마지막에 config 메소드를 호출하여 최상위 메뉴(mainmenu)를 등록해야 메뉴가 나타난다. import tkinter as tk def test(): print("Menu Pressed") root = tk.Tk() root.geometry('320x240') root.title('Tkinter Test') mainmenu = tk.Menu(root) # FILE MENU filem = tk.Menu(mainmenu, tearoff = 0) filem.add_command(label = 'NEW', ..