Page 384 - MDP2020-3
P. 384

378
                      |    인천전자마이스터고등학교  ·············································································································

                                    ledTLabel.config(image=imageLedOn)
                            else:

                                    ledTLabel.config(image=imageLedOff)


                            if  ledNums[3]:
                                    ledFOLabel.config(image=imageLedOn)
                            else:

                                    ledFOLabel.config(image=imageLedOff)


                            if  ledNums[4]:
                                    ledFILabel.config(image=imageLedOn)
                            else:

                                    ledFILabel.config(image=imageLedOff)


                    def  closeExecute():
                            ledFrame.quit()
                            ledFrame.destroy()



                    showListFrame  =  Frame(ledFrame,  bg=barColor,  width=100,  height=720)
                    showListFrame.pack(side="right")
                    buttonExecuteClose        =          Button(showListFrame,             image=exitImage,
            command=closeExecute,  bg=statusButtonColor)

                    buttonExecuteClose.place(x=15,  y=635)




            def  windowWindow():
                    global  cotSet,  upCot,  downCot

                    windowFrame  =  Toplevel(frame,  bg=numsColor)
                    windowFrame.title("커튼확인창")
                    windowFrame.overrideredirect(True)
                    windowFrame.geometry("1280x720+0+0")



                    cotMainFrame  =  Frame(windowFrame,  width=1004,  height=481,  bg=numsColor,  bd=2,
            relief="solid")
                    cotFrameF  =  Frame(cotMainFrame,  bg="khaki",  width=1000,  height=119)
                    cotFrameS  =  Frame(cotMainFrame,  bg="white",  width=1000,  height=120)
                    cotFrameT  =  Frame(cotMainFrame,  bg="khaki",  width=1000,  height=120)

                    cotFrameFo  =  Frame(cotMainFrame,  bg="white",  width=1000,  height=120)


                    cotMainFrame.place(x=100,  y=120)
                    cotFrameF.place(x=0,  y=0)
   379   380   381   382   383   384   385   386   387   388   389