2022年1月7日 星期五

Python Tkinter – button

 Python Tkinter – button


#!/usr/bin/env python3

# -*- coding: utf-8 -*-


#import tkinter   # In Python 3.x

# import Tkinter   # In python 2.x. (Note Capital T)


# import everything from tkinter module

from tkinter import *


# create a tkinter window

root = Tk()


# Open window having dimension 100x100

root.geometry('100x100')


# Create a Button

btn1 = Button(root, text = 'Click me !', bd = '5',

command = root.destroy)


# Set the position of button on the top of window.

btn1.pack(side = 'top')


btn2 = Button(root, text = 'Click me !',

                command = root.destroy)

 

# Set the position of button on the top of window

btn2.pack(side = 'top')    


root.mainloop()


沒有留言:

張貼留言

2026 作業3 RFID+ Telegram 練習

 2026 作業3  RFID+ Telegram  練習 (Wokwi 與 Telegram 二者溝通訊息反映比較慢 ) 歡迎 Alex 使用 RFID 控制系統 /on : 開啟 LED /off : 關閉 LED /flash : 閃爍模式 /timer : 開啟 5 秒 ...