TabletDevice.ActiveSource Propriedade

Definição

Obtém o PresentationSource que relata a entrada atual para o dispositivo de tablet.

public:
 virtual property System::Windows::PresentationSource ^ ActiveSource { System::Windows::PresentationSource ^ get(); };
public override System.Windows.PresentationSource ActiveSource { [System.Security.SecurityCritical] get; }
public override System.Windows.PresentationSource ActiveSource { get; }
[<get: System.Security.SecurityCritical>]
member this.ActiveSource : System.Windows.PresentationSource
member this.ActiveSource : System.Windows.PresentationSource
Public Overrides ReadOnly Property ActiveSource As PresentationSource

Valor da propriedade

O PresentationSource que relata a entrada atual para o dispositivo tablet.

Atributos

Exemplos

O exemplo de código a seguir demonstra a ActiveSource propriedade .

PresentationSource myPresentationSource = myTabletDevice.ActiveSource;

if (null != myPresentationSource)
{
    textbox1.AppendText("ActiveSource.RootVisual: " + myPresentationSource.RootVisual.ToString() + "\n");
}
else
{
    textbox1.AppendText("ActiveSource: null\n");
}
Dim myPresentationSource As PresentationSource = myTabletDevice.ActiveSource

If Not IsNothing(myPresentationSource) Then
    textbox1.AppendText("ActiveSource.RootVisual: " & myPresentationSource.RootVisual.ToString() & vbCrLf)
Else
    textbox1.AppendText("ActiveSource: null" & vbCrLf)
End If

Aplica-se a