資源簡介
代碼片段和文件信息
from?tkinter?import?*
import?tkinter?as?tk
import?requests
from?PIL?import?ImageTk?as?itk
class?Myframe(frame):
????def?__init__(self):
????????self.root=Tk()
????????self.root.title(“天氣查詢“)
????????self.root.geometry(‘1200x700+400+220‘)
????????bg?=?tk.Canvas(self.root?width=1200?height=600?bg=‘white‘)
????????#self.img?=?itk.PhotoImage(file=“bg.gif“)
????????#bg.place(x=100?y=40)
????????#bg.create_image(0?0?anchor=NW?image=self.img)
????????self.city?=?Entry(self.root?width=16?font=(“仿宋“?18?“normal“))
????????self.city.place(x=200?y=60)
????????citylabel=Label(self.roottext=‘查詢城市‘font=(“仿宋“?18?“normal“))
????????citylabel.place(x=80y=60)
????????#查詢按鈕
????????chaxun?=?Button(self.root?width=10?height=3?text=“查詢“?bg=‘#00CCFF‘?bd=5?fo
評論
共有 條評論