1

ユーザーが終了するかどうかを確認するトップレベル ウィンドウを作成する「終了」ボタンがあります。「いいえ」ボタンをクリックすると、ウィンドウは破棄されますが、「終了」ボタンは機能しなくなります。ええと、「終了」仮想イベント キーストローク (CTRL-Q、Q、および CTRL-C) も機能しなくなります。何故ですか?

from Tkinter import *

class ButtonTestClass(Frame):
    def __init__(self):

        self.root=Tk()
        self.root.title("No Button Tester!")

        self.root.option_add('*font', ('arial', 14, 'bold'))
        self.frame=Frame(self.root, height=120, width=600, \
            borderwidth=2, relief=GROOVE, background='steelblue'
            )
        self.frame.pack(fill=X, expand=False)
        self.frame.pack_propagate(False)

        self.label = Label(self.frame, \
            text='Why does the "Quit" button stop working\nafter the "No" button is clicked?', bg='steelblue')
        self.label.pack(padx=25, pady=15, side=TOP)

        self.root.event_add('<<ev_quit>>', '<Control-c>', '<Control-q>', '<q>')
        self.root.bind('<<ev_quit>>', lambda e: self.bye_bye())

        self.byeWindow = None
        print "In constructor self.byeWindow -  value: '%r' type: '%r'" % (self.byeWindow, type(self.byeWindow))  # <<< DEBUG >>>

    def createQuitButton(self):
        pbx=250; pby=70; pbw=75; pbh=25; pbp=10
        self.quitBtn=Button(self.frame, text='Quit', activebackground='steelblue3', font='arial 10 bold', bg='steelblue', command=lambda: self.bye_bye())
        self.quitBtn.place(x=pbx, y=pby, width=pbw, height=pbh)
        pbx += pbw + pbp

    def dontQuit(self, tlref):
        self.byeWindow = None   # <<<--- There was a 'misspelling' here; grrrr!
        tlref.destroy()
        print "In dontQuit(). self.byeWindow - value: '%r' type: '%r'" % (self.byeWindow, type(self.byeWindow))  # <<< DEBUG >>>

    def bye_bye(self):
        if self.byeWindow is not None:
            return
        self.byeWindow=Toplevel()
        print "In bye_bye(), self.byeWindow - value: '%r' type: '%r'" % (self.byeWindow, type(self.byeWindow))  # <<< DEBUG >>>
        self.byeWindow.title("Really quit?")
        self.byeWindow.config(bg='steelblue', height=40, width=80)
        sureMsgLabel=Label(self.byeWindow, text="Are you sure you want to quit?", font='arial 11 bold', bg='steelblue')
        sureMsgLabel.pack(side=TOP, padx=10, pady=15)
        yesButton=Button(self.byeWindow, text=" Yes. ", font='arial 10 bold', bg='steelblue', activebackground='steelblue3', command=lambda: quit())
        yesButton.pack(side=LEFT, anchor=N, padx=40, pady=20)
        yesButton.bind('<Key-Return>', lambda: yesButton.invoke())
        noButton = Button(self.byeWindow, text="  No. ", activebackground='steelblue3', font='arial 10 bold', bg='steelblue', command=lambda: self.dontQuit(self.byeWindow))
        noButton.focus_force()
        noButton.pack(side=RIGHT, anchor=N, padx=40, pady=20)
        noButton.bind('<Key-Return>', lambda: noButton.invoke())

bT = ButtonTestClass()

bT.createQuitButton()

if __name__ == '__main__':
    bT.root.mainloop()

PSこのスニペットを実行すると、問題を明確に説明していない場合に備えて、私が何を意味するかがわかります。タ...

4

1 に答える 1

0

最終的な分析で、私の問題はインスタンス変数のスペルミスであることが判明しました:「byeWindow」ではなく「byWindow」で、self.bye_bye()関数のifステートメントをブロックしました。スペルを修正すると問題が解決しました。洞察力に富んだヒントと賢明なアドバイスを提供してくれた Bryan Oakley に感謝と敬意を表します。これが完璧に実行されているプログラムです...

from Tkinter import *

class ButtonTestClass(Frame):
    def __init__(self):

        self.root=Tk()
        self.root.title("Button Tester!")

        self.root.option_add('*font', ('arial', 14, 'bold'))
        self.frame=Frame(self.root, height=120, width=600, \
            borderwidth=2, relief=GROOVE, background='steelblue'
            )
        self.frame.pack(fill=X, expand=False)
        self.frame.pack_propagate(False)

        self.label = Label(self.frame, \
            text='Wanna see a "Quit" button working flawlessly?', bg='steelblue')
        self.label.pack(padx=25, pady=15, side=TOP)

        self.root.event_add('<<ev_quit>>', '<Control-c>', '<Control-q>', '<q>')
        self.root.bind('<<ev_quit>>', lambda e: self.bye_bye())

        self.byeWindow = None

    def createQuitButton(self):
        pbx=250
        pby=70
        pbw=75
        pbh=25
        pbp=10
        self.quitBtn=Button(
            self.frame, 
            text='Quit', 
            activebackground='steelblue3',
            font='arial 10 bold',
            bg='steelblue',
            command=self.bye_bye
        )
        self.quitBtn.place(
            x=pbx, 
            y=pby, 
            width=pbw, 
            height=pbh
        )
        pbx += pbw + pbp

    def dontQuit(self, tlref):
        tlref.destroy()
        self.byeWindow = None

    def bye_bye(self):
        if self.byeWindow is not None:
            return
        self.byeWindow=Toplevel()
        self.byeWindow.title("Really quit?")
        self.byeWindow.config(bg='steelblue', height=40, width=80)
        sureMsgLabel=Label(self.byeWindow, 
            text="Are you sure you want to quit?", 
            font='arial 11 bold',
            bg='steelblue'
        )
        sureMsgLabel.pack(side=TOP, padx=10, pady=15)
        yesButton=Button(self.byeWindow,
            text=" Yes. ",
            font='arial 10 bold',
            bg='steelblue',
            activebackground='steelblue3',
            command=lambda: quit()
        )
        yesButton.pack(side=LEFT, anchor=N, padx=40, pady=20)
        yesButton.bind('<Key-Return>', lambda: yesButton.invoke())
        noButton = Button(self.byeWindow, 
            text="  No. ",
            activebackground='steelblue3',
            font='arial 10 bold',
            bg='steelblue',
            command=lambda: self.dontQuit(self.byeWindow)
        )
        noButton.focus_force()
        noButton.pack(side=RIGHT, anchor=N, padx=40, pady=20)
        noButton.bind('<Key-Return>', lambda: noButton.invoke())

bT = ButtonTestClass()

bT.createQuitButton()

if __name__ == '__main__':
    bT.root.mainloop()

まあ、それ自体は実際にはプログラムではなく、「ボタンが機能しない」問題があったプログラムから抽出された数行です。乾杯!

于 2015-09-15T08:27:45.833 に答える