2017年8月24日 星期四

Python 的內建 GUI 模組 Tkinter 測試 (1) : 建立視窗 Button 與 Label 元件

測試其中的 Button 與 Label 元件


#========================
#use python version3.6.2
#tkinter
#========================
"""

GUI 元件 (稱為 widget 或 control)  :
Label
Button
Radiobutton
Checkbutton
Entry
Frame
LabelFrame
Listbox
Text
Message
PanedWindow
Scrollbar
Scale
Spinbox
Menu
OptionMenu
Menubutton
Canvas
Image
Bitmap
Toplevel
"""
#========================
import tkinter as tk
win=tk.Tk()     #建立視窗容器物件
win.title("Tk GUI")
label=tk.Label(win, text="Hello World!")   #建立標籤物件
label.pack()       #顯示元件
button=tk.Button(win, text="OK")
button.pack()     #顯示元件
win.mainloop()

沒有留言:

張貼留言