Application.Deactivated イベント

定義

アプリケーションが前面のアプリケーションではなくなったときに発生します。

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

注釈

ユーザーが次の操作を行うと、1 つ以上の開いているウィンドウを持つWindows Presentation Foundation アプリケーションが非アクティブ化されます (フォアグラウンド アプリケーションの停止)。

  • Alt + TAB キーを使用するか、タスク マネージャーを使用して、別のアプリケーションに切り替えます。

  • 別のアプリケーションのウィンドウのタスク バー ボタンをクリックします。

非アクティブ化を検出する必要があるアプリケーションは、 イベントを Deactivated 処理できます。

アプリケーションが最初にアクティブ化された後、有効期間中に何度も非アクティブ化および再アクティブ化される可能性があります。 アプリケーションの動作または状態がアクティブ化の状態に依存する場合は、 イベントと Activated イベントの両方Deactivatedを処理して、その状態を判断できます。

Deactivated は XAML ブラウザー アプリケーション (XBAP) では発生しません。

適用対象

こちらもご覧ください