如何使用tkinter创建下一个按钮以在多个帧之间切换

时间:2018-10-21 09:27:35

标签: python python-3.x user-interface tkinter global-variables

我正在tkinter中编写一个测验程序,其中包含每个被问问题的框架。用户从单选按钮列表中选择正确答案后,将弹出一个窗口,允许用户选择测验中的任何问题。这是一个例子: enter image description here

我不想只显示所有可能的答案,而是只想有一个“下一个”和“上一个”按钮,但是我很难创建一个按钮,该按钮每次选择下一个或上一个按钮时都会自动更新。

这是我下面的完整代码供参考。之后,我强调了重要的部分,以使其变得更简单。

Root_File_Name = "C:\\LearningArabic\\LiblibArriby\\"
def Part1():
    JSON_File = Root_File_Name + "Lessons\\Lesson_1\\"
    with open(JSON_File+"Arabic_Lesson_1.json", "r", encoding = "utf-8-sig") as question_file:   
        data = json.load(question_file)

    def create_widgets_in_first_frame():        # Create the label for the frame
        current_frame=frames[0]               #Make the frame number generic so as to make copy/paste easier. ##UPDATE PER QUESTION##
        question_number = "question0"
        question_frame_populator(current_frame, question_number)

    def create_widgets_in_second_frame():
        current_frame=frames[1]               #Make the frame number generic so as to make copy/paste easier. ##UPDATE PER QUESTION##
        question_number = "question1"
        question_frame_populator(current_frame, question_number)

    def create_widgets_in_third_frame():
        current_frame=frames[2]               #Make the frame number generic so as to make copy/paste easier
        question_number = "question2"      
        question_frame_populator(current_frame, question_number)

    def create_widgets_in_forth_frame():
        current_frame=frames[3]               #Make the frame number generic so as to make copy/paste easier
        question_number = "question3"
        question_frame_populator(current_frame, question_number)

    def create_widgets_in_fifth_frame():
        current_frame=frames[4]               #Make the frame number generic so as to make copy/paste easier
        question_number = "question4"
        question_frame_populator(current_frame, question_number)

    def create_widgets_in_sixth_frame():
        current_frame=frames[5]               #Make the frame number generic so as to make copy/paste easier
        question_number = "question5"
        question_frame_populator(current_frame, question_number)

    def question_frame_populator(current_frame, question_number): #This is what displayes all of the information on the frame
        questionDirectory = data["lesson 1"]["part one"][question_number]       ##UPDATE PER QUESTION##  This is the directory for the question.
        wronganswer = questionDirectory["wronganswer"]                      #This is the directory for the wrong answers
        question = questionDirectory.get("question")                        #This is the question text            
        correctanswer = questionDirectory.get("answer")                     #This is the answer for whichever question has been selected.
        arabic = questionDirectory.get("arabic")                            #This is the arabic text for the question
        transliteration = questionDirectory.get("transliteration")

        global var
        var = IntVar()
        var.set(0)  #Sets the initial radiobutton selection to nothing

        answers = generate_answers(wronganswer, correctanswer)  #Pulls answers generated from the "generate_answers" function
        choices = []
        for i in range(3):
            choice = Radiobutton(current_frame, image=answers[i], variable = var, value=i+1, command= Check_Answer)
            choice.image = answers[i]
            choices.append(choice)

        random.shuffle(choices) #This line of code randomizes the order of the radiobuttons. 
        choices[0].grid(row=1, column=0)
        choices[1].grid(row=1, column=1)
        choices[2].grid(row=1, column=2)

        L1 = Label(current_frame, text=question, font=("Helvetica", 35))    #This displays the question at the top of the screen
        L1.grid(columnspan=4, row=0)

        transliteration_button = Button(current_frame, text="Show Transliteration", command= lambda: Transliteration(current_frame, arabic, transliteration))    # Makes the phonetic pronunciation button. #####
        transliteration_button.grid(column=0, row=2)

        Previous_Button() # Creates the "previous" button and displays it.
        Next_Button()  # Creates the "next" button and displays it.
        Quit_Button(current_frame)  # Creates the "quit" button and displays it.

    def Transliteration(current_frame, arabic, transliteration):
        Transliteration = Label(current_frame, text="'"+arabic+"'" + " is pronounced " + "'"+transliteration+"'", font=("Helvetica", 35))
        Transliteration.grid(row=3, columnspan=4)

    def generate_answers(wronganswer, correctanswer):
        Wans=random.sample(wronganswer, 2)
        images = [os.path.join(ImagePath, f"{Wans[i]}.png") for i in range(2)]
        images += [os.path.join(ImagePath, f"{correctanswer}.png")]
        answers = [PhotoImage(file=images[i]) for i in range(3)]
        return answers

    def Check_Answer():
        global lives
        global score

        if str(var.get()) !="3":
            special_frames[1].grid_forget() #This is the frame for right answers
            special_frames[0].grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E)) #This is the frame for wrong answers
            lives -=1

            Incorrect = Label(special_frames[0], text ="That's incorrect!\n Lives: " +str(lives) + "\n Score: " + str(score), font=("Helvetica", 35))
            Incorrect.grid(row=0, rowspan=2, column=0, columnspan=3)

        if str(var.get()) == "3":
            score +=1

            special_frames[0].grid_forget() #This is the frame for wrong answers
            special_frames[1].grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E)) #This is the frame for right answers

            Correct = Label(special_frames[1], text = "    That's right!    \n Lives: " +str(lives)+ "\n Score: " + str(score), font=("Helvetica", 35))
            Correct.grid(row=0, rowspan=2, column=0, columnspan=5)
            first_frame_button = Button(special_frames[1], text = "Question 1", command = call_frame_1)
            first_frame_button.grid(column=0, row=3)
            second_frame_button = Button(special_frames[1], text = "Question 2", command = call_frame_2)
            second_frame_button.grid(column=1, row=3)
            third_frame_button = Button(special_frames[1], text = "Question 3", command = call_frame_3)
            third_frame_button.grid(column=2, row=3)
            forth_frame_button = Button(special_frames[1], text = "Question 4", command = call_frame_4)
            forth_frame_button.grid(column=4, row=3)
            fifth_frame_button = Button(special_frames[1], text = "Question 5", command = call_frame_5)
            fifth_frame_button.grid(column=0, row=4)                
            sixth_frame_button = Button(special_frames[1], text = "Question 6", command = call_frame_6)
            sixth_frame_button.grid(column=1, row=4)

    def all_frames_forget():
        for i in range(6):  #This is for question frames
            frames[i].grid_forget()
        for i in range(3):  #This is for special frames, like the correct and incorrect answer frames
            special_frames[i].grid_forget()

    def check_remaining_lives(create_widgets_in_current_frame, current_frame):
        if lives<= 0:
            Zero_Lives()
        else:
            create_widgets_in_current_frame
            current_frame.grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.N, tkinter.E))

    def Zero_Lives():
        special_frames[2].grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E))

        L5 = Label(special_frames[2], text="You have no remaining lives. \nPlease quit the lesson and try again.", font=("Helvetica", 35))
        L5.grid(columnspan=4, row=0)

        quit_button = Button(special_frames[2], text = "Quit", command = root_window.destroy)
        quit_button.grid(column=1, columnspan = 2, row=2)

    def Previous_Button():
        previous_button = Button(special_frames[1], text = "Previous", command = previous_question)
        previous_button.grid(column=1, row=5)

    def previous_question():
        global frameNumber
        frameNumber -=1
        call_frame_frameNumber()

    def Next_Button():
        next_button = Button(special_frames[1], text = "Next", command = next_question)
        next_button.grid(column=2, row=5)

    def next_question():
        global frameNumber
        frameNumber +=1
        call_frame_frameNumber()

    def Quit_Button(current_frame):
        quit_button = Button(current_frame, text = "Quit", command = quit_program)
        quit_button.grid(column=4, row=4)

    def quit_program():
        root_window.destroy()

    def call_frame_1():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_first_frame() #This line is unique
        current_frame = frames[0]     #This line is unique
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_2():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_second_frame() #This line is unique
        current_frame = frames[1] #This line is unique         
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_3():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_third_frame() #This line is unique
        current_frame = frames[2] #This line is unique         
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_4():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_forth_frame() #This line is unique
        current_frame = frames[3] #This line is unique         
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_5():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_fifth_frame() #This line is unique
        current_frame = frames[4] #This line is unique         
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_6():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_sixth_frame() #This line is unique
        current_frame = frames[5] #This line is unique         
        check_remaining_lives(create_widgets_in_current_frame, current_frame)       

    ##### Program starts here  #####
    Lesson1_FilePath = Root_File_Name + "Lessons\\Lesson_1\\"
    ImagePath = Lesson1_FilePath + "Images\\"

    root_window = Tk() # Create the root GUI window.
    root_window.title("Lesson 1: Part 1") # Label the root GUI window.

    global score
    score = 0               #Setting the initial score to zero.
    global lives
    lives = 3               #Setting the initial number of lives.
    global frameNumber
    frameNumber = 1

    window_width = 200      # Define window size
    window_heigth = 100

    frames = []  # This includes frames for all questions
    for i in range(6):
        frame=tkinter.Frame(root_window, width=window_width, height=window_heigth)
        frame['borderwidth'] = 2
        frame['relief'] = 'sunken'
        frame.grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.N, tkinter.E))
        frames.append(frame)

    special_frames=[] #This includes the frames for: wrong answers, right answers, and zero lives
    for i in range(3):
        special=tkinter.Frame(root_window, width=window_width, height=window_heigth)
        special['borderwidth'] = 2
        special['relief'] = 'sunken'
        special.grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E))
        special.grid_forget()
        special_frames.append(special)

    call_frame_1() #Calls the first function which creates the firist frame

    root_window.mainloop()

我知道有很多代码,但是我想确保所有内容都在那里,以防万一。以下是我认为最重要的部分:

    def Previous_Button():
        previous_button = Button(special_frames[1], text = "Previous", command = previous_question)
        previous_button.grid(column=1, row=5)

    def previous_question():
        global frameNumber
        frameNumber -=1
        call_frame_frameNumber()

    def Next_Button():
        next_button = Button(special_frames[1], text = "Next", command = next_question)
        next_button.grid(column=2, row=5)

    def next_question():
        global frameNumber
        frameNumber +=1
        call_frame_frameNumber()

    global frameNumber
    frameNumber = 1

问题是python不能将“ call_frame_frameNumber”识别为“ call_frame_X”,其中每次按下按钮时X都会改变。我收到错误消息:NameError:未定义名称'call_frame_frameNumber'

我知道定义全局变量不是最佳实践,但这是我目前所知道的全部。如果您能显示更好的方法,我将不愿学习!

2 个答案:

答案 0 :(得分:0)

这不是很好的编码实践,因为帧的数量会增加,但是您可以只使用几个'if'语句来调用每个函数。

例如:

if frameNumber == 1:
    call_frame_1()

答案 1 :(得分:0)

在查看@PurpleIce的一些评论并尝试进一步清理我的代码后,我找到了解决问题的方法。

我更改了代码,以使每个问题都没有唯一的call_frame_X,而只有一个带有frameNumber变量的常规call_frame,如下所示。

    def Next_Button():
        next_button = Button(special_frames[1], text = "Next Question", command = next_question)
        next_button.grid(column=0, columnspan=5, row=3)

    def next_question():
        global frameNumber
        frameNumber +=1
        call_frame(frameNumber)

然后,我创建了一个通用函数,而不是具有多个create_widgets_in_X_frame,该函数将在每次选择“下一步”按钮时进行迭代。

    def create_widgets_function(frameNumber):
        current_frame=frames[frameNumber]               #Make the frame number generic so as to make copy/paste easier. ##UPDATE PER QUESTION##

        question_number = "question"+ str(frameNumber)
        question_frame_populator(current_frame, question_number)

    def call_frame(frameNumber):
        all_frames_forget()
        create_widgets_in_current_frame =create_widgets_function(frameNumber)
        current_frame = frames[frameNumber]
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

这有助于减少/合并很多代码,同时给我一个“下一步”按钮。

这是更新的代码:     def Part1():

    JSON_File = Root_File_Name + "Lessons\\Lesson_1\\"
    with open(JSON_File+"Arabic_Lesson_1.json", "r", encoding = "utf-8-sig") as question_file:   
        data = json.load(question_file)              

    def create_widgets_in_first_frame():        # Create the label for the frame
        current_frame=frames[0]               #Make the frame number generic so as to make copy/paste easier. ##UPDATE PER QUESTION##
        question_number = "question0"

        question_frame_populator(current_frame, question_number)

    def question_frame_populator(current_frame, question_number): #This is what displayes all of the information on the frame
        questionDirectory = data["lesson 1"]["part one"][question_number]       ##UPDATE PER QUESTION##  This is the directory for the question.
        wronganswer = questionDirectory["wronganswer"]                      #This is the directory for the wrong answers
        question = questionDirectory.get("question")                        #This is the question text            
        correctanswer = questionDirectory.get("answer")                     #This is the answer for whichever question has been selected.
        arabic = questionDirectory.get("arabic")                            #This is the arabic text for the question
        transliteration = questionDirectory.get("transliteration")

        global var
        var = IntVar()
        var.set(0)  #Sets the initial radiobutton selection to nothing

        answers = generate_answers(wronganswer, correctanswer)  #Pulls answers generated from the "generate_answers" function
        choices = []
        for i in range(3):
            choice = Radiobutton(current_frame, image=answers[i], variable = var, value=i+1, command= Check_Answer)
            choice.image = answers[i]
            choices.append(choice)

        random.shuffle(choices) #This line of code randomizes the order of the radiobuttons. 
        choices[0].grid(row=1, column=0)
        choices[1].grid(row=1, column=1)
        choices[2].grid(row=1, column=2)

        L1 = Label(current_frame, text=question, font=("Helvetica", 35))    #This displays the question at the top of the screen
        L1.grid(columnspan=4, row=0)

        transliteration_button = Button(current_frame, text="Show Transliteration", command= lambda: Transliteration(current_frame, arabic, transliteration))    # Makes the phonetic pronunciation button. #####
        transliteration_button.grid(column=0, row=2)

        #Previous_Button() # Creates the "previous" button and displays it.
        Next_Button()  # Creates the "next" button and displays it.
        Quit_Button(current_frame)  # Creates the "quit" button and displays it.

    def Transliteration(current_frame, arabic, transliteration):
        Transliteration = Label(current_frame, text="'"+arabic+"'" + " is pronounced " + "'"+transliteration+"'", font=("Helvetica", 35))
        Transliteration.grid(row=3, columnspan=4)

    def generate_answers(wronganswer, correctanswer):
        Wans=random.sample(wronganswer, 2)
        images = [os.path.join(ImagePath, f"{Wans[i]}.png") for i in range(2)]
        images += [os.path.join(ImagePath, f"{correctanswer}.png")]
        answers = [PhotoImage(file=images[i]) for i in range(3)]
        return answers

    def Check_Answer():
        global lives
        global score

        if str(var.get()) !="3":
            special_frames[1].grid_forget() #This is the frame for right answers
            special_frames[0].grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E)) #This is the frame for wrong answers
            lives -=1

            Incorrect = Label(special_frames[0], text ="That's incorrect!\n Lives: " +str(lives) + "\n Score: " + str(score), font=("Helvetica", 35))
            Incorrect.grid(row=0, rowspan=2, column=0, columnspan=3)

        if str(var.get()) == "3":
            score +=1

            special_frames[0].grid_forget() #This is the frame for wrong answers
            special_frames[1].grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E)) #This is the frame for right answers

            Correct = Label(special_frames[1], text = "    That's right!    \n Lives: " +str(lives)+ "\n Score: " + str(score), font=("Helvetica", 35))
            Correct.grid(row=0, rowspan=2, column=0, columnspan=5)

    def all_frames_forget():
        for i in range(6):  #This is for question frames
            frames[i].grid_forget()
        for i in range(3):  #This is for special frames, like the correct and incorrect answer frames
            special_frames[i].grid_forget()

    def check_remaining_lives(create_widgets_in_current_frame, current_frame):
        if lives<= 0:
            Zero_Lives()
        else:
            create_widgets_in_current_frame
            current_frame.grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.N, tkinter.E))

    def Zero_Lives():
        special_frames[2].grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E))

        L5 = Label(special_frames[2], text="You have no remaining lives. \nPlease quit the lesson and try again.", font=("Helvetica", 35))
        L5.grid(columnspan=4, row=0)

        quit_button = Button(special_frames[2], text = "Quit", command = root_window.destroy)
        quit_button.grid(column=1, columnspan = 2, row=2)

    def Quit_Button(current_frame):
        quit_button = Button(current_frame, text = "Quit", command = quit_program)
        quit_button.grid(column=4, row=2)

    def quit_program():
        root_window.destroy()

    def Next_Button():
        next_button = Button(special_frames[1], text = "Next Question", command = next_question)
        next_button.grid(column=0, columnspan=5, row=3)

    def next_question():
        global frameNumber
        frameNumber +=1

        call_frame(frameNumber)

    def create_widgets_function(frameNumber):
        current_frame=frames[frameNumber]               #Make the frame number generic so as to make copy/paste easier. ##UPDATE PER QUESTION##

        question_number = "question"+ str(frameNumber)
        question_frame_populator(current_frame, question_number)

    def call_frame(frameNumber):
        all_frames_forget()
        create_widgets_in_current_frame =create_widgets_function(frameNumber)
        current_frame = frames[frameNumber]
        check_remaining_lives(create_widgets_in_current_frame, current_frame)

    def call_frame_1():
        all_frames_forget()
        create_widgets_in_current_frame = create_widgets_in_first_frame() #This line is unique
        current_frame = frames[0]     #This line is unique
        check_remaining_lives(create_widgets_in_current_frame, current_frame)        

    ##### Program starts here  #####
    Lesson1_FilePath = Root_File_Name + "Lessons\\Lesson_1\\"
    ImagePath = Lesson1_FilePath + "Images\\"

    root_window = Tk() # Create the root GUI window.
    root_window.title("Lesson 1: Part 1") # Label the root GUI window.

    global score
    score = 0               #Setting the initial score to zero.
    global lives
    lives = 3               #Setting the initial number of lives.
    global frameNumber
    frameNumber = 1

    window_width = 200      # Define window size
    window_heigth = 100

    frames = []  # This includes frames for all questions
    for i in range(6):
        frame=tkinter.Frame(root_window, width=window_width, height=window_heigth)
        frame['borderwidth'] = 2
        frame['relief'] = 'sunken'
        frame.grid(column=0, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.N, tkinter.E))
        frames.append(frame)

    special_frames=[] #This includes the frames for: wrong answers, right answers, and zero lives
    for i in range(3):
        special=tkinter.Frame(root_window, width=window_width, height=window_heigth)
        special['borderwidth'] = 2
        special['relief'] = 'sunken'
        special.grid(column=1, row=0, padx=20, pady=5, sticky=(tkinter.W, tkinter.E))
        special.grid_forget()
        special_frames.append(special)

    call_frame_1() #Calls the first function which creates the firist frame

    root_window.mainloop() 
相关问题