I am calling Application.Current.Shutdown method from class that is binded to xaml windows with objectdataprovider, but the application is not closing, can anyone help me to understand why? And i note that my application is not closing completely after my main window is closed, it doesn't disappear from task manager's process list. Thanks a lot.
|
feedback
|
|
Have you created any threads to do background processing? If you have, make sure to set the | |||
feedback
|
|
Environment.Exit(0) closes the application anyway | ||||
feedback
|
|
Don't forget to add this:
Hope this helps. | |||
|
feedback
|
|
If you have multiple windows or dialogs in your application, you may need to close each one explicitly. Close dialogs with:
Close all windows:
| |||||
feedback
|
|
I had the same problem, the application process doesn't stop although the application closed. In my case I opened a window from a BackgroundWorker (code below)
instanciate the window before running the BackgroundWorker seem not being the problem but by erasing the line the application closed correctly I open my window from the BackgroundWorker but using the principal Thread (code below)
Hope it helps. | |||
|
feedback
|