StylusPlugIn.IsActiveForInput 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 StylusPlugIn 是否能接受輸入的資訊。
public:
property bool IsActiveForInput { bool get(); };
public bool IsActiveForInput { get; }
member this.IsActiveForInput : bool
Public ReadOnly Property IsActiveForInput As Boolean
屬性值
如果 StylusPlugIn 能接受輸入則為 true
,否則為 false
。
範例
下列範例示範如何覆寫 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
備註
必須符合下列條件, StylusPlugIn 才能接受輸入:
Element的 StylusPlugIn 會顯示並啟用。