2016-12-07 82 views
0

我需要使用存在inisde ItemsControl的一個或多個網格進行動畫製作。我ItemsControl的是什麼樣子,找到ItemsControl中的所有控件 - WPF

<StackPanel x:Name="SlideMainContent" Orientation="Vertical"> 
      <ItemsControl Name="itemControls"> 
       <ItemsControl.ItemTemplate> 
        <DataTemplate> 
         <Grid Tag="{Binding Path=(ItemsControl.AlternationIndex), RelativeSource={RelativeSource Mode=TemplatedParent}, FallbackValue=FAIL, StringFormat={}grid{0}}" Width="{Binding ActualWidth, ElementName=SlideMainViewer}" 
           Height="{Binding ElementName=SlideMainViewer, Path=ActualHeight}"> 
          <Grid.RowDefinitions> 
           <RowDefinition Height=".3*" /> 
           <RowDefinition Height="auto"/> 
           <RowDefinition Height="auto" /> 
           <RowDefinition Height="*" /> 
           <RowDefinition Height=".3*" /> 
          </Grid.RowDefinitions> 
          <Grid.ColumnDefinitions> 
           <ColumnDefinition Width="*"/> 
           <ColumnDefinition Width=".2*"/> 
           <ColumnDefinition Width="2*" /> 
          </Grid.ColumnDefinitions> 
          <Border Grid.Row="1" Grid.RowSpan="3" VerticalAlignment="Top" Grid.Column="0" BorderThickness="5" BorderBrush="White"> 
           <Image Stretch="Uniform" Source="{Binding Path=ImageURL}"/> 
          </Border> 
          <TextBlock Grid.Row="1" Grid.Column="2" FontFamily="{StaticResource AvenirLT65}" Style="{StaticResource HeaderStyle}" Text="{Binding (ItemsControl.AlternationIndex), RelativeSource={RelativeSource AncestorType=StackPanel}}" /> 
          <TextBlock Grid.Row="2" Grid.Column="2" FontFamily="{StaticResource AvenirLT65}" Style="{StaticResource SubHeaderStyle}" Margin="0 10" Text="{Binding Path=NewsDate}" /> 
          <TextBlock Grid.Row="3" Grid.Column="2" FontFamily="{StaticResource AvenirLT35}" Style="{StaticResource TextStyle}" Text="{Binding Path=Description}" /> 
         </Grid> 
        </DataTemplate> 
       </ItemsControl.ItemTemplate> 
      </ItemsControl> 
    </StackPanel> 

在這裏,我想用得到的所有網格面板爲我的動畫片一樣,

foreach (Grid grd in SlideMainContent.Children) 
{ 
    // my code comes here..... 
} 

但我能得到所有網格。

+1

爲什麼你可以在你的foreach循環按如下方式使用它你想這樣做?請解釋你實際想要達到的目標。 – Clemens

+0

我想爲我的動畫使用所有網格。 – ganesh

回答

1

你可以使用VisualTreeHelper這個。

插入這個方法到您的代碼隱藏:

public static T FindChild<T>(DependencyObject parent) where T : DependencyObject 
    { 
     if (parent != null) 
     { 
      for (int i = 0; i < VisualTreeHelper.GetChildrenCount(parent); i++) 
      { 
       DependencyObject child = VisualTreeHelper.GetChild(parent, i); 
       if (child != null && child is T) 
       { 
        return (T) child; 
       } 

       T childItem = FindChild<T>(child); 
       if (childItem != null) 
       { 
        return childItem; 
       } 
      } 
     } 
     return null; 
    } 

這將有助於找到你給它的類型的第一個孩子的控制。

itemControls.UpdateLayout(); 
foreach(var item in itemControls.Items) 
{ 
    var parentObject = item.ItemContainerGenerator.ContainerFromItem(item); 
    Grid grid = FindChild<Grid>(parentObject); 
    ... your code here ... 
} 
1

這裏是要找到一個特定類型的所有兒童的擴展方法:

public static List<T> GetChildrenOfType<T>(this DependencyObject depObj) 
    where T : DependencyObject 
    { 
     var result = new List<T>(); 
     if (depObj == null) return null; 
     var queue = new Queue<DependencyObject>(); 
     queue.Enqueue(depObj); 
     while (queue.Count > 0) 
     { 
      var currentElement = queue.Dequeue(); 
      var childrenCount = VisualTreeHelper.GetChildrenCount(currentElement); 
      for (var i = 0; i < childrenCount; i++) 
      { 
       var child = VisualTreeHelper.GetChild(currentElement, i); 
       if (child is T) 
        result.Add(child as T); 
       queue.Enqueue(child); 
      } 
     } 

     return result; 
    } 

可能的用法:

someItemsControl.GetChildrenOfType<FrameworkElements>(); 
相關問題