Share via


WindowActivatedEventArgs.Handled 속성

정의

Activated 이벤트가 처리되었는지 여부를 가져오거나 설정합니다.

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

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

속성 값

Boolean

bool

True이면 적절한 대리자에서 이벤트를 처리했습니다. 그렇지 않으면 false입니다.

설명

이 속성을 true로 설정하면 창이 활성화에 키보드 포커스를 가져오지 못하게 됩니다.

적용 대상