ContainerVisual.ContentBounds Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft das umgebende Feld für den Inhalt des ContainerVisual ab.
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
Eigenschaftswert
Ein Rect, das das umgebende Feld angibt.
Beispiele
Im folgenden Beispiel wird gezeigt, wie das begrenzungsgebundene Rechteck eines ContainerVisual Objekts abgerufen wird.
// 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)
Hinweise
Verwenden Sie die DescendantBounds Eigenschaft, um die Union aller Inhaltsbindungsfelder für alle Untergeordneten eines ContainerVisual Objekts zurückzugeben, aber nicht das Objekt selbst.