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.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

Have you created any threads to do background processing? If you have, make sure to set the .IsBackground property on them, or they can keep the app running

link|improve this answer
No, i doesn't create threads directly, may be WPF do bindings or objectdataprovider resources in other thread? – ArsenMkrt May 1 '09 at 8:39
feedback

Environment.Exit(0) closes the application anyway

link|improve this answer
calling Shutdown() from within override OnStartup() was NOT working. Environment.Exit(0) works – jberger May 1 at 14:26
feedback

Don't forget to add this:

private void Window_Closed(object sender, EventArgs e)
{
  Application.Current.Shutdown();
}

Hope this helps.

link|improve this answer
feedback

If you have multiple windows or dialogs in your application, you may need to close each one explicitly.

Close dialogs with:

_myDialog.Close();

Close all windows:

foreach(var window in Application.Current.Windows.ToList())
{
    window.Close();
}
link|improve this answer
I try this, it doesn't help, i realize where is the problem, the problem is that when i call shutdown() or close() the objectdataprovider execution is not terminated, I think it will be better to add a new question, what I will do now :) – ArsenMkrt May 1 '09 at 10:16
surely you could replace the for(i...) with a foreach? manually iterating over loops is so last century :-) – Orion Edwards May 3 '09 at 20:37
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)

BackgroundWorker BG = new BackgroundWorker();
BG.DoWork += new DoWorkEventHandler(BG_DoWork);
StockMinWindow MinWindow = new StockMinWindow(null); -------- this is the problem 
BG.RunWorkerAsync();

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)

 View.Dispatcher.BeginInvoke(new Action(delegate()
 {
   StockMinWindow MinWindow = new StockMinWindow(StockMinList);
   MinWindow.Owner = View;
   MinWindow.ShowDialog();
 }));

Hope it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.