def BoxOfficeMenu():
global list_boxOffice, m1_ListBox, m2_ListBox, m3_ListBox, m4_ListBox, m5_ListBox
global dic_thumbnail, image
bgLabel = Label(bo_Frame, width=600, height=600, bg='white')
bgLabel.place(x=0, y=0)
list_boxOffice = getXML(yesterday, 0, 0)
init_dateInputLabel()
init_dateSearchButton()
init_SortingButton()
fontemp = font.Font(bo_Frame, size=12, weight='bold')
# BoxOffice Tab Setting Start.
m1_ListBox = Listbox(bo_Frame, font=fontemp, width=37, height=11, borderwidth=2, relief='ridge')
m1_ListBox.place(x=80, y=75)
m2_ListBox = Listbox(bo_Frame, font=fontemp, width=11, height=11, borderwidth=2, relief='ridge')
m2_ListBox.place(x=0, y=400)
m3_ListBox = Listbox(bo_Frame, font=fontemp, width=14, height=11, borderwidth=2, relief='ridge')
m3_ListBox.place(x=105, y=400)
m4_ListBox = Listbox(bo_Frame, font=fontemp, width=12, height=11, borderwidth=2, relief='ridge')
m4_ListBox.place(x=238, y=400)
m5_ListBox = Listbox(bo_Frame, font=fontemp, width=16, height=11, borderwidth=2, relief='ridge')
m5_ListBox.place(x=353, y=400)
dateText = Label(bo_Frame, font=fontemp, bg="grey", fg="black", text="BOX OFFICE ??")
dateText.place(x=180, y=15)
m1_ListBox.bind('<<ListboxSelect>>', listBox_Event)
# BoxOffice Tab Setting End.
评论列表
文章目录