2016-12-07 19 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

Почему вы хотите это сделать? Пожалуйста, объясните, чего вы на самом деле пытаетесь достичь. – 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>();