TabletDevice Classe

Définition

Représente le périphérique de digitaliseur d'un Tablet PC.

public ref class TabletDevice sealed : System::Windows::Input::InputDevice
public sealed class TabletDevice : System.Windows.Input.InputDevice
type TabletDevice = class
    inherit InputDevice
Public NotInheritable Class TabletDevice
Inherits InputDevice
Héritage

Exemples

L’exemple suivant montre comment obtenir les propriétés prises en charge par un TabletDevice .

TabletDevice currentTablet = Tablet.CurrentTabletDevice;
ReadOnlyCollection<StylusPointProperty> supportedProperties = 
    currentTablet.SupportedStylusPointProperties;

StringWriter properties = new StringWriter();

foreach (StylusPointProperty property in supportedProperties)
{
    properties.WriteLine(property.ToString());
}

MessageBox.Show(properties.ToString());
Dim currentTablet As TabletDevice = Tablet.CurrentTabletDevice

Dim supportedProperties As ReadOnlyCollection(Of StylusPointProperty) _
            = currentTablet.SupportedStylusPointProperties

Dim properties As New StringWriter()

For Each supportedProperty As StylusPointProperty In supportedProperties
    properties.WriteLine(supportedProperty.ToString())
Next supportedProperty

MessageBox.Show(properties.ToString())

Propriétés

ActiveSource

Obtient PresentationSource qui signale l'entrée actuelle pour le périphérique tablette.

Dispatcher

Obtient le Dispatcher associé à DispatcherObject.

(Hérité de DispatcherObject)
Id

Obtient l'identificateur unique du périphérique tablette sur le système.

Name

Obtient le nom du périphérique tablette.

ProductId

Obtient l'identificateur de produit du périphérique tablette.

StylusDevices

Obtient StylusDeviceCollection associé au périphérique tablette.

SupportedStylusPointProperties

Obtient une collection d'objets StylusPointProperty pris en charge par TabletDevice.

TabletHardwareCapabilities

Obtient TabletHardwareCapabilities pour le périphérique tablette.

Target

Obtient IInputElement qui fournit le traitement d'entrée de base pour le périphérique tablette.

Type

Obtient TabletDeviceType du périphérique tablette.

Méthodes

CheckAccess()

Détermine si le thread appelant a accès à ce DispatcherObject.

(Hérité de DispatcherObject)
Equals(Object)

Détermine si l'objet spécifié est égal à l'objet actuel.

(Hérité de Object)
GetHashCode()

Fait office de fonction de hachage par défaut.

(Hérité de Object)
GetType()

Obtient le Type de l'instance actuelle.

(Hérité de Object)
MemberwiseClone()

Crée une copie superficielle du Object actuel.

(Hérité de Object)
ToString()

Renvoie le nom du périphérique tablette.

VerifyAccess()

Garantit que le thread appelant a accès à DispatcherObject.

(Hérité de DispatcherObject)

S’applique à