Udostępnij za pośrednictwem


StylusPlugIn.Element Właściwość

Definicja

Pobiera element UIElement , do którego StylusPlugIn jest dołączony.

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

Wartość właściwości

UIElement

Element UIElement , do którego StylusPlugIn jest dołączony.

Przykłady

W poniższym przykładzie pokazano Element , kiedy StylusPlugIn jest dodawany do kolekcji StylusPlugIns .

protected override void OnAdded()
{
    base.OnAdded();
     
    MessageBox.Show(this.Element.ToString());
}
Protected Overrides Sub OnAdded()

    MyBase.OnAdded()

    MessageBox.Show(Me.Element.ToString())

End Sub

Dotyczy