[참고]
import tkinter as tk
from tkinter import ttk
win = tk.Tk() # Create instance
win.title("Python GUI") # Add a title
tabControl = ttk.Notebook(win) # Create Tab Control
tab1 = ttk.Frame(tabControl) # Create a tab
tabControl.add(tab1, text='Tab 1') # Add the tab
tabControl.pack(expand=1, fill="both") # Pack to make visible
#======================
# Start GUI
#======================
win.mainloop()
[결과]
'#Python GUI Programming Cookbook' 카테고리의 다른 글
#Tab 안에 LabelFrame과 Label 넣기 (0) | 2018.12.21 |
---|---|
#Tab 2개 만들기 (0) | 2018.12.21 |
#tkinter #체크 버튼 #라디오 버튼 만들기 (0) | 2018.12.17 |
#콤보박스 위젯 만들기 (0) | 2018.12.07 |
#tkinter #메시지 박스 만들기 (0) | 2018.12.06 |