Application.Activated 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当应用程序成为前台应用程序时发生。
public:
event EventHandler ^ Activated;
public event EventHandler Activated;
member this.Activated : EventHandler
Public Custom Event Activated As EventHandler
Public Event Activated As EventHandler
事件类型
示例
以下示例演示如何检测独立应用程序何时激活和停用。
<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" />
using System;
using System.Windows;
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;
}
}
}
Imports System.Windows
Namespace SDKSample
Partial Public Class App
Inherits Application
Private isApplicationActive As Boolean
Private Sub App_Activated(ByVal sender As Object, ByVal e As EventArgs)
' Application activated
Me.isApplicationActive = True
End Sub
Private Sub App_Deactivated(ByVal sender As Object, ByVal e As EventArgs)
' Application deactivated
Me.isApplicationActive = False
End Sub
End Class
End Namespace
注解
Windows Presentation Foundation应用程序具有一个或多个打开的窗口被激活, (在应用程序启动后首次激活其中一个窗口时,或者在应用程序处于非活动状态时激活其中一个窗口时,应用程序将成为前台应用程序) :具体而言,激活发生在以下情况下:
应用程序将打开其第一个窗口。
用户通过使用 ALT+TAB 或任务管理器切换到应用程序。
用户单击应用程序中某个窗口的任务栏按钮。
需要检测激活时间的应用程序可以处理事件 Activated 。
应用程序首次激活后,可能会在其生存期内停用并重新激活多次。 如果应用程序的行为或状态取决于其激活状态,它可以处理 Activated 和 Deactivated 事件以确定它处于哪个激活状态。
应用程序变为活动状态后, Activated 在停用应用程序之前不会再次引发 ,而不管在应用程序处于活动状态时,应用程序中有多少个窗口被激活。
Activated 不会引发 XAML 浏览器应用程序 (XBAP) 。