Page 277 - MDP2020-3
P. 277
················································································ 명장양성프로젝트 【MDP】 과제발표회 자료집 Ⅲ | 271
sqlDex = False
def listAllTime():
global exitImage, statusButtonColor, l2Font, personNums, barColor, listImage
listWindow = Toplevel(frame, bg=numsColor)
listWindow.title("시간 확인 창")
listWindow.overrideredirect(True)
listWindow.geometry("1280x720+0+0")
listWindow.lift()
def closeExecute2():
listWindow.quit()
listWindow.destroy()
def listTimeAll():
listAllWindow = Toplevel(listWindow, bg=numsColor)
listAllWindow.title("전체 확인 창")
listAllWindow.overrideredirect(True)
listAllWindow.geometry("1280x720+0+0")
listAllWindow.lift()
def close2Execute():
listAllWindow.quit()
listAllWindow.destroy()
showListExtraFrame = Frame(listAllWindow, bg=barColor, width=100,
height=720)
showListExtraFrame.place(x=1180, y=0)
buttonListClose = Button(showListExtraFrame, image=exitImage,
command=close2Execute, bg=statusButtonColor)
buttonListClose.place(x=15, y=635)
list2Frame = Frame(listAllWindow, relief="solid", bd=3)
list2Frame.place(x=60, y=90)
listScrollBar2 = Scrollbar(list2Frame)
listList2 = Listbox(list2Frame, yscrollcommand=scroll.set, width=50, height=17,
font=l2Font,
selectbackground="white", bg="white",
selectforeground="black", activestyle="none")
listScrollBar2.pack(side="right", fill="y")
listList2.pack(side="left", fill="both")