ContainerVisual.ContentBounds Właściwość

Definicja

Pobiera pole ograniczenia dla zawartości obiektu ContainerVisual.

public:
 property System::Windows::Rect ContentBounds { System::Windows::Rect get(); };
public System.Windows.Rect ContentBounds { get; }
member this.ContentBounds : System.Windows.Rect
Public ReadOnly Property ContentBounds As Rect

Wartość właściwości

Rect

Element Rect określający pole ograniczenia.

Przykłady

W poniższym przykładzie pokazano, jak pobrać prostokąt ContainerVisual ograniczenia obiektu.

// Return the bounding rectangle for the ContainerVisual.
Rect rectBounds = containerVisual.ContentBounds;

// Expand the rectangle to include the bounding rectangle
// of the all of the ContainerVisual's descendants.
rectBounds.Union(containerVisual.DescendantBounds);
' Return the bounding rectangle for the ContainerVisual.
Dim rectBounds As Rect = containerVisual.ContentBounds

' Expand the rectangle to include the bounding rectangle
' of the all of the ContainerVisual's descendants.
rectBounds.Union(containerVisual.DescendantBounds)

Uwagi

DescendantBounds Użyj właściwości , aby zwrócić połączenie wszystkich pól ograniczenia zawartości dla wszystkich obiektów podrzędnych ContainerVisual obiektu, ale nie samego obiektu.

Dotyczy