Application Exit event : Application « Windows Presentation Foundation « VB.Net






Application Exit event

        


<Application x:Class="SimpleXamlApp.MyApp"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  StartupUri="MainWindow.xaml" Exit ="AppExit">
  <x:Code>
  private void AppExit(object sender, ExitEventArgs e)
  {
    MessageBox.Show("App has exited");
  }
  </x:Code>
</Application>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Store the variable in the application and get it backStore the variable in the application and get it back
2.Throw Application event from button click event handlerThrow Application event from button click event handler
3.Shut down the application in Window closing eventShut down the application in Window closing event
4.(ResourceDictionary)Application.LoadComponent
5.Application.GetResourceStream
6.Get a handle to the current app and shut it downGet a handle to the current app and shut it down
7.Set and get data from Application.Current.PropertiesSet and get data from Application.Current.Properties
8.Using GetContentStream
9.Create and retrieve cookies from a Windows Presentation Foundation (WPF) application using SetCookie and GetCookie.Create and retrieve cookies from a Windows Presentation Foundation (WPF) application using SetCookie and GetCookie.