def Title():
# Title Setting Start.
logoBack = Label(root, bg = "white")
logoBack.place(width = 1000, height = 85)
logoLine1 = Label(root, bg="black")
logoLine1.place(x=180, y=20, width=170, height=10)
logoLine2 = Label(root, bg="black")
logoLine2.place(x=180, y=40, width=170, height=10)
logoLine3 = Label(root, bg="black")
logoLine3.place(x=180, y=60, width=170, height=10)
logoLine4 = Label(root, bg="black")
logoLine4.place(x=700, y=20, width=170, height=10)
logoLine5 = Label(root, bg="black")
logoLine5.place(x=700, y=40, width=170, height=10)
logoLine6 = Label(root, bg="black")
logoLine6.place(x=700, y=60, width=170, height=10)
logo = Label(root, image = logoImage, bg = 'white')
logo.place(x=0, y=0)
star = Label(root, image = starImage, bg = 'white')
star.place(x=890, y=0)
fontemp = font.Font(root, size = 40, weight = 'bold', slant = 'italic')
title = Label(root, font = fontemp, text="BOX OFFICE", bg = "white")
title.place(x=360, y=10)
# Title Setting End.
# BoxOffice==================================
评论列表
文章目录