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()





沒有留言:

張貼留言

Messaging API作為替代方案

  LINE超好用功能要沒了!LINE Notify明年3月底終止服務,有什麼替代方案? LINE Notify將於2025年3月31日結束服務,官方建議改用Messaging API作為替代方案。 //CHANNEL_ACCESS_TOKEN = 'Messaging ...