VisualTreeHelper.GetChildrenCount(DependencyObject) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回指定的視覺物件包含的子系數目。
public:
static int GetChildrenCount(System::Windows::DependencyObject ^ reference);
public static int GetChildrenCount (System.Windows.DependencyObject reference);
static member GetChildrenCount : System.Windows.DependencyObject -> int
Public Shared Function GetChildrenCount (reference As DependencyObject) As Integer
參數
- reference
- DependencyObject
父視覺物件,參考為 DependencyObject。
傳回
父視覺物件包含的子視覺物件數目。
範例
下列範例示範如何列舉視覺物件的所有子系。 如果您有興趣序列化視覺物件階層的所有轉譯資訊,或正在執行分析或替代轉譯,則這是您可能會使用的技術。
// Enumerate all the descendants of the visual object.
static public void EnumVisual(Visual myVisual)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(myVisual); i++)
{
// Retrieve child visual at specified index value.
Visual childVisual = (Visual)VisualTreeHelper.GetChild(myVisual, i);
// Do processing of the child visual object.
// Enumerate children of the child visual object.
EnumVisual(childVisual);
}
}
' Enumerate all the descendants of the visual object.
Public Shared Sub EnumVisual(ByVal myVisual As Visual)
For i As Integer = 0 To VisualTreeHelper.GetChildrenCount(myVisual) - 1
' Retrieve child visual at specified index value.
Dim childVisual As Visual = CType(VisualTreeHelper.GetChild(myVisual, i), Visual)
' Do processing of the child visual object.
' Enumerate children of the child visual object.
EnumVisual(childVisual)
Next i
End Sub
備註
GetChild使用 方法來擷取父視覺效果的指定子系。
的值 reference
可以代表 Visual 或 Visual3D 物件,這就是常見的基底類型在這裡做為參數類型 DependencyObject 的原因。