VisualTreeHelper.GetContentBounds 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回 Visual 的已缓存的边界框矩形。
重载
GetContentBounds(Visual3D) |
返回指定 Visual3D 的已缓存的边界框矩形。 |
GetContentBounds(Visual) |
返回指定 Visual 的已缓存的边界框矩形。 |
GetContentBounds(Visual3D)
返回指定 Visual3D 的已缓存的边界框矩形。
public:
static System::Windows::Media::Media3D::Rect3D GetContentBounds(System::Windows::Media::Media3D::Visual3D ^ reference);
public static System.Windows.Media.Media3D.Rect3D GetContentBounds (System.Windows.Media.Media3D.Visual3D reference);
static member GetContentBounds : System.Windows.Media.Media3D.Visual3D -> System.Windows.Media.Media3D.Rect3D
Public Shared Function GetContentBounds (reference As Visual3D) As Rect3D
参数
- reference
- Visual3D
要计算其边界框值的三维可视对象。
返回
Visual3D 的边界框三维矩形。
注解
使用该方法 GetDescendantBounds 可返回 3D 视觉对象的所有后代的所有内容边界框的联合,其中包括 Visual3D 本身。
另请参阅
适用于
GetContentBounds(Visual)
返回指定 Visual 的已缓存的边界框矩形。
public:
static System::Windows::Rect GetContentBounds(System::Windows::Media::Visual ^ reference);
public static System.Windows.Rect GetContentBounds (System.Windows.Media.Visual reference);
static member GetContentBounds : System.Windows.Media.Visual -> System.Windows.Rect
Public Shared Function GetContentBounds (reference As Visual) As Rect
参数
返回
Visual 的边界框矩形。
示例
下面的示例演示如何检索对象的边界矩形 Visual 。
// Return the bounding rectangle of the parent visual object and all of its descendants.
Rect rectBounds = VisualTreeHelper.GetDescendantBounds(parentVisual);
' Return the bounding rectangle of the parent visual object and all of its descendants.
Dim rectBounds As Rect = VisualTreeHelper.GetDescendantBounds(parentVisual)
注解
GetDescendantBounds调用该方法可返回视觉对象的所有子代的所有内容边界框的联合,其中包括Visual本身。