Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Window.Deactivated Event

Definition

Namespace:
System.Windows
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when a window becomes a background window.

public:
 event EventHandler ^ Deactivated;
public event EventHandler Deactivated;
member this.Deactivated : EventHandler 
Public Custom Event Deactivated As EventHandler 

Event Type

Remarks

A window is deactivated (becomes a background window) when:

  • A user switches to another window in the current application.

  • A user switches to the window in another application by using ALT+TAB or by using Task Manager.

  • A user clicks the taskbar button for a window in another application.

Windows that need to detect when they become deactivated by handling the Deactivated event.

After a window is first deactivated, it may be reactivated and deactivated many times during its lifetime. If an application's behavior or state depends on its activation state, it can inspect IsActive to determine which activation state it's in.

An application can also be Deactivated.

Applies to

See also


Feedback

Was this page helpful?