Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

Interrupt method with other Button using Python and Tkinter

I'm still learning how to use Python and Tkinter.

What I want to do is whenever I clicked on a button while a script is running, it'll be able to interrupt the current script that is running. As of now, it does not allow me to click on other button while it's running.

    def openPrePlanWindow(self):
        """
        open the flip window and initial all the button and text
        """

        panel = Toplevel(self.root)
        panel.geometry("350x250+300+300")
        panel.wm_title("Gesture Recognition")

        self.btn_end = tki.Button(
            panel, text="End/Emergency", relief="raised", command=self.emergency)
        self.btn_end.pack(side="bottom", fill="both",
                            expand="yes", padx=10, pady=5)

        self.btn_resume = tki.Button(
            panel, text="Resume Pre Plan", relief="raised", command=self.resumeDrone)
        self.btn_resume.pack(side="bottom", fill="both",
                             expand="yes", padx=10, pady=5)

        self.btn_pause = tki.Button(
            panel, text="Pause/Takeover", relief="raised", command=self.interruptDrone)
        self.btn_pause.pack(side="bottom", fill="both",
                            expand="yes", padx=10, pady=5)

        self.btn_start = tki.Button(
            panel, text="Start", relief="raised", command=self.startPreplanRoute)
        self.btn_start.pack(side="bottom", fill="both",
                            expand="yes", padx=10, pady=5)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...