VisualTreeElementExtensions.GetVisualTreeElements 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.
Przeciążenia
GetVisualTreeElements(IVisualTreeElement, Point) |
Pobiera listę elementów podrzędnych elementu drzewa wizualnego na podstawie danego punktu. |
GetVisualTreeElements(IVisualTreeElement, Rect) |
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie prostokąta. |
GetVisualTreeElements(IVisualTreeElement, Double, Double) |
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie danego x, y punktu. |
GetVisualTreeElements(IVisualTreeElement, Double, Double, Double, Double) |
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie prostokąta zdefiniowanego przez jego współrzędne określone w jednostkach platformy, a nie pikseli. |
GetVisualTreeElements(IVisualTreeElement, Point)
Pobiera listę elementów podrzędnych elementu drzewa wizualnego na podstawie danego punktu.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IReadOnlyList<Microsoft::Maui::IVisualTreeElement ^> ^ GetVisualTreeElements(Microsoft::Maui::IVisualTreeElement ^ visualElement, Microsoft::Maui::Graphics::Point point);
public static System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement> GetVisualTreeElements (this Microsoft.Maui.IVisualTreeElement visualElement, Microsoft.Maui.Graphics.Point point);
static member GetVisualTreeElements : Microsoft.Maui.IVisualTreeElement * Microsoft.Maui.Graphics.Point -> System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement>
<Extension()>
Public Function GetVisualTreeElements (visualElement As IVisualTreeElement, point As Point) As IReadOnlyList(Of IVisualTreeElement)
Parametry
- visualElement
- IVisualTreeElement
IVisualTreeElement do skanowania.
Zwraca
Lista elementów podrzędnych.
Dotyczy
GetVisualTreeElements(IVisualTreeElement, Rect)
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie prostokąta.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IReadOnlyList<Microsoft::Maui::IVisualTreeElement ^> ^ GetVisualTreeElements(Microsoft::Maui::IVisualTreeElement ^ visualElement, Microsoft::Maui::Graphics::Rect rectangle);
public static System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement> GetVisualTreeElements (this Microsoft.Maui.IVisualTreeElement visualElement, Microsoft.Maui.Graphics.Rect rectangle);
static member GetVisualTreeElements : Microsoft.Maui.IVisualTreeElement * Microsoft.Maui.Graphics.Rect -> System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement>
<Extension()>
Public Function GetVisualTreeElements (visualElement As IVisualTreeElement, rectangle As Rect) As IReadOnlyList(Of IVisualTreeElement)
Parametry
- visualElement
- IVisualTreeElement
IVisualTreeElement do skanowania.
- rectangle
- Rect
Prostokąt.
Zwraca
Lista elementów podrzędnych.
Dotyczy
GetVisualTreeElements(IVisualTreeElement, Double, Double)
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie danego x, y punktu.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IReadOnlyList<Microsoft::Maui::IVisualTreeElement ^> ^ GetVisualTreeElements(Microsoft::Maui::IVisualTreeElement ^ visualElement, double x, double y);
public static System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement> GetVisualTreeElements (this Microsoft.Maui.IVisualTreeElement visualElement, double x, double y);
static member GetVisualTreeElements : Microsoft.Maui.IVisualTreeElement * double * double -> System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement>
<Extension()>
Public Function GetVisualTreeElements (visualElement As IVisualTreeElement, x As Double, y As Double) As IReadOnlyList(Of IVisualTreeElement)
Parametry
- visualElement
- IVisualTreeElement
IVisualTreeElement do skanowania.
- x
- Double
Punkt X.
- y
- Double
Punkt Y.
Zwraca
Lista elementów podrzędnych.
Dotyczy
GetVisualTreeElements(IVisualTreeElement, Double, Double, Double, Double)
Pobiera listę elementów drzewa wizualnego elementów podrzędnych na podstawie prostokąta zdefiniowanego przez jego współrzędne określone w jednostkach platformy, a nie pikseli.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IReadOnlyList<Microsoft::Maui::IVisualTreeElement ^> ^ GetVisualTreeElements(Microsoft::Maui::IVisualTreeElement ^ visualElement, double x1, double y1, double x2, double y2);
public static System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement> GetVisualTreeElements (this Microsoft.Maui.IVisualTreeElement visualElement, double x1, double y1, double x2, double y2);
static member GetVisualTreeElements : Microsoft.Maui.IVisualTreeElement * double * double * double * double -> System.Collections.Generic.IReadOnlyList<Microsoft.Maui.IVisualTreeElement>
<Extension()>
Public Function GetVisualTreeElements (visualElement As IVisualTreeElement, x1 As Double, y1 As Double, x2 As Double, y2 As Double) As IReadOnlyList(Of IVisualTreeElement)
Parametry
- visualElement
- IVisualTreeElement
IVisualTreeElement do skanowania.
- x1
- Double
Współrzędna X górnego lewego punktu.
- y1
- Double
Współrzędna Y górnego lewego punktu.
- x2
- Double
Współrzędna X w prawym dolnym punkcie.
- y2
- Double
Współrzędna Y w prawym dolnym punkcie.
Zwraca
Lista elementów podrzędnych.