Page 282 - MDP2020-3
P. 282

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

                                    cotFrameFo.place(x=0,  y=357)
                                    cotFrameFo.config(bg="white")

                            elif  cotSet  ==  4:
                                    cotFrameF.place(x=0,  y=0)
                                    cotFrameS.place(x=0,  y=119)
                                    cotFrameS.config(bg="khaki")
                                    cotFrameT.place(x=0,  y=238)

                                    cotFrameFo.place(x=0,  y=357)
                                    cotFrameFo.config(bg="khaki")


                    def  closeExecute():
                            windowFrame.quit()

                            windowFrame.destroy()


                    def  cotDown():
                            global  cotSet
                            if  cotSet  <=  3:

                                    cotSet  +=  1
                                    windowSetting()


                    def  cotUp():
                            global  cotSet

                            if  cotSet  >=  1:
                                    cotSet  -=  1
                                    windowSetting()


                    windowSetting()

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

            bg=statusButtonColor)
                    buttonExecuteDown  =  Button(showListFrame,  image=downCot,  command=cotDown,
            bg=statusButtonColor)


                    buttonExecuteUp.place(x=15,  y=435)

                    buttonExecuteDown.place(x=15,  y=535)
                    buttonExecuteClose.place(x=15,  y=635)
   277   278   279   280   281   282   283   284   285   286   287