스크롤위젯 (1) 썸네일형 리스트형 파이썬 tkinter GUI 스크롤되는 텍스트위젯 예제 #======================================= # imports #======================================= import tkinter as tk from tkinter import ttk from tkinter import scrolledtext # Create instance win = tk.Tk() # Add a title win.title("Python GUI") # Adding a Label a_label = ttk.Label(win, text="A label") a_label.grid(column =0, row =0) # Button Click Event Function def click_me(): action.configure(text .. 이전 1 다음