Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm currently developing a class library. I'm having trouble finding a way to detect if the Main UI is closing.

Is there a way to know that from the class library project?

My purpose of this is to cancel all the threads that is currently running if the Main UI is closing.

See Question&Answers more detail:os

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

1 Answer

You could use ApplicationExit event in Program.cs file, provided you have list of all the running threads, you could close.

Application.ApplicationExit += new EventHandler(Application_ApplicationExit);


static void Application_ApplicationExit(object sender, EventArgs e)
    {
        //do something
    }

Other option is to track FormClosing event for the main Form.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...