ToolTipService.GetPlacementTarget(DependencyObject) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera wartość dołączonej PlacementTarget właściwości dla obiektu.
public:
static System::Windows::UIElement ^ GetPlacementTarget(System::Windows::DependencyObject ^ element);
[System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))]
public static System.Windows.UIElement GetPlacementTarget (System.Windows.DependencyObject element);
[<System.Windows.AttachedPropertyBrowsableForType(typeof(System.Windows.DependencyObject))>]
static member GetPlacementTarget : System.Windows.DependencyObject -> System.Windows.UIElement
Public Shared Function GetPlacementTarget (element As DependencyObject) As UIElement
Parametry
- element
- DependencyObject
Obiekt, z którego jest odczytywana wartość właściwości.
Zwraca
Wartość właściwości obiektu PlacementTarget .
- Atrybuty
Przykłady
W poniższym przykładzie pokazano, jak uzyskać wartość dołączonej ToolTipService.PlacementTarget
właściwości. Metoda FindName znajduje obiekt o nazwie ellipse2
, który jest .Ellipse
UIElement target = new UIElement();
target = ToolTipService.GetPlacementTarget(
(DependencyObject)FindName("ellipse2"));
Dim target As New UIElement()
target = ToolTipService.GetPlacementTarget(CType(FindName("ellipse2"), DependencyObject))