次の方法で共有


SystemFunctionButtonEventArgs.Handled プロパティ

定義

SystemFunctionButtonPressed イベントと SystemFunctionButtonReleased イベントを処理済みとしてマークする値を取得または設定します。

public:
 property bool Handled { bool get(); void set(bool value); };
bool Handled();

void Handled(bool value);
public bool Handled { get; set; }
var boolean = systemFunctionButtonEventArgs.handled;
systemFunctionButtonEventArgs.handled = boolean;
Public Property Handled As Boolean

プロパティ値

Boolean

bool

false (既定値) の場合、イベントは次のイベント ハンドラーまでバブルアップします。 それ以外の場合、イベントは次のイベント ハンドラーにバブルアップしません。

注釈

この API は、ハードウェア システム ボタンからイベントをインターセプトするための低レベルフックとしてアクセシビリティ ツールで使用することを目的としています。

SystemButtonEventController イベント登録はシステム全体に適用され、先着順です。 アプリケーションまたはサービスによって SystemButtonEventController イベント Handled プロパティが true に設定されている場合、同じイベント通知のアプリまたはサービスの後に登録されたアプリケーションまたはサービスは通知を受け取りません。

適用対象

こちらもご覧ください