WebViewControlAcceleratorKeyPressedEventArgs.Handled 속성

정의

라우트된 이벤트를 처리됨으로 표시하는 값을 가져오거나 설정합니다. Handled의 true 값은 이벤트 경로의 다른 처리기가 동일한 이벤트를 다시 처리하지 못하도록 합니다.

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

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

속성 값

Boolean

bool

Handled를 true로 설정하면 WebViewControl이 이벤트에서 키를 받지 못하게 됩니다.

적용 대상