2022年11月16日 星期三

Python GUI EX1.5 , 1.6

 # ch1_5.py

from tkinter import *


root = Tk()

w = 300     # 視窗寬

h = 160     # 視窗高

x = 400     # 視窗左上角x軸位置

y = 200     # 視窗左上角Y軸位置

root.geometry("%dx%d+%d+%d" % (w,h,x,y))

root.mainloop()




# ch1_6.py

from tkinter import *


root = Tk()

screenWidth = root.winfo_screenwidth()      # 螢幕寬度

screenHeight = root.winfo_screenheight()    # 螢幕高度

w = 300                                     # 視窗寬

h = 160                                     # 視窗高

x = (screenWidth - w) / 2                   # 視窗左上角x軸位置

y = (screenHeight - h ) / 2                 # 視窗左上角Y軸位置

root.geometry("%dx%d+%d+%d" % (w,h,x,y))

root.mainloop()





沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...