Note

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

Access to this page requires authorization. You can try .

Window.Activated 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 the foreground window.

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

Event Type

Remarks

A window is activated (becomes the foreground window) when:

  • The window is first opened.

  • A user switches to a window by selecting it with the mouse, pressing ALT+TAB, or from Task Manager.

  • A user clicks the window's taskbar button.

Windows that need to detect when they become activate can handle the Activated event.

After a window 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 inspect IsActive to determine which activation state it's in.

An application can also be Activated.

Applies to

See also


Feedback

Was this page helpful?