Application.Deactivated 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當應用程式不再做為前景應用程式時發生。
public:
event EventHandler ^ Deactivated;
public event EventHandler Deactivated;
member this.Deactivated : EventHandler
Public Custom Event Deactivated As EventHandler
Public Event Deactivated 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 或使用工作管理員切換到另一個應用程式。
按一下另一個應用程式中視窗的工作列按鈕。
需要偵測停用的應用程式可以處理 Deactivated 事件。
第一次啟用應用程式之後,可能會在其存留期間停用並重新啟用多次。 如果應用程式的行為或狀態取決於其啟用狀態,它可以同時處理 Deactivated 和 Activated 事件,以判斷其所在的狀態。
Deactivated 不會針對 XBAP) (XAML 瀏覽器應用程式引發。