Deactivated Event
.NET Framework Class Library
Application..::.Deactivated Event

Occurs when an application stops being the foreground application.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Visual Basic (Declaration)
Public Event Deactivated As EventHandler
Visual Basic (Usage)
Dim instance As Application
Dim handler As EventHandler

AddHandler instance.Deactivated, handler
C#
public event EventHandler Deactivated
Visual C++
public:
 event EventHandler^ Deactivated {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
JScript
JScript does not support events.
XAML Attribute Usage
<object Deactivated="EventHandler" .../>

A Windows Presentation Foundation (WPF) application that has one or more open windows deactivates (stops being the foreground application) when a user does the following:

  • Switches to another application by using ALT+TAB or by using Task Manager.

  • Clicks the taskbar button for a window in another application.

Applications that need to detect deactivation can handle the Deactivated event.

After an application is first activated, it may be deactivated and reactivated many times during its lifetime. If an application's behavior or state depends on its activation state, it can handle both Deactivated and Activated events to determine which state it's in. For more information, including an example that illustrates this dependency, see Application Activation and Deactivation Sample.

Deactivated is not raised for XAML browser applications (XBAPs).

The following example shows how to detect when a standalone application deactivates and activates.

XAML
<Application 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="SDKSample.App"
  StartupUri="MainWindow.xaml"
  Activated="App_Activated" 
  Deactivated="App_Deactivated" />
C#
using System; // EventArgs
using System.Windows; // Application

namespace SDKSample
{
    public partial class App : Application
    {
        bool isApplicationActive;

        void App_Activated(object sender, EventArgs e)
        {
            // Application activated
            this.isApplicationActive = true;
        }

        void App_Deactivated(object sender, EventArgs e)
        {
            // Application deactivated
            this.isApplicationActive = false;
        }
    }
}

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker