다음을 통해 공유


StylusPlugIn.OnIsActiveForInputChanged 메서드

정의

IsActiveForInput 속성이 변경되면 발생합니다.

protected:
 virtual void OnIsActiveForInputChanged();
protected virtual void OnIsActiveForInputChanged ();
abstract member OnIsActiveForInputChanged : unit -> unit
override this.OnIsActiveForInputChanged : unit -> unit
Protected Overridable Sub OnIsActiveForInputChanged ()

예제

다음 예제에서는 재정의 하는 방법에 설명 합니다 OnIsActiveForInputChanged 메서드.

protected override void OnIsActiveForInputChanged()
{
    base.OnIsActiveForInputChanged();

    if (!this.IsActiveForInput)
    {
        // Clean up any resources the plug-in uses.
    }
    else
    {
        // Allocate the resources the plug-in uses.
    }
}
Protected Overrides Sub OnIsActiveForInputChanged()

    MyBase.OnIsActiveForInputChanged()

    If Not Me.IsActiveForInput Then
        ' Clean up any resources the plug-in uses.
    Else
        ' Allocate the resources the plug-in uses.
    End If

End Sub

설명

사용 된 OnIsActiveForInputChanged 메서드를 사용 하는 리소스를 정리는 StylusPlugIn합니다.

적용 대상