StylusPlugIn.Element Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le UIElement auquel le StylusPlugIn est attaché.
public:
property System::Windows::UIElement ^ Element { System::Windows::UIElement ^ get(); };
public System.Windows.UIElement Element { get; }
member this.Element : System.Windows.UIElement
Public ReadOnly Property Element As UIElement
Valeur de propriété
Le UIElement auquel le StylusPlugIn est lié.
Exemples
L’exemple suivant montre le Element StylusPlugIn moment où il est ajouté à la StylusPlugIns collection.
protected override void OnAdded()
{
base.OnAdded();
MessageBox.Show(this.Element.ToString());
}
Protected Overrides Sub OnAdded()
MyBase.OnAdded()
MessageBox.Show(Me.Element.ToString())
End Sub