为什么Projection属性为null?

时间:2011-11-13 18:26:22

标签: windows-phone-7

<ListBox Name="listBoxButtons"
         Height="700">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <Border Background="{StaticResource PhoneAccentBrush}"
                    Name="border"
                    Width="432" Height="62"
                    Margin="6" Padding="12,0,0,6">
                <TextBlock Text="{Binding}" 
                           Foreground="#FFFFFF" FontSize="26.667"
                           HorizontalAlignment="Left"
                           VerticalAlignment="Bottom"
                           FontFamily="{StaticResource PhoneFontFamilySemiBold}"/>
                <Border.Projection>
                    <PlaneProjection RotationX="-60"/>
                </Border.Projection>
            </Border>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

代码:

private void ShowAnim()
{
    IEasingFunction quadraticEase = new QuadraticEase { EasingMode = EasingMode.EaseOut };
    Storyboard _swivelShow = new Storyboard();
    foreach (var item in this.listBoxButtons.Items)
    {
        UIElement container = listBoxButtons.ItemContainerGenerator.ContainerFromItem(item) as UIElement;
        if (container != null)
        {
            Border content = VisualTreeHelper.GetChild(container, 0) as Border;
            if (content != null)
            {
                DoubleAnimationUsingKeyFrames showAnimation = new DoubleAnimationUsingKeyFrames();

                EasingDoubleKeyFrame showKeyFrame1 = new EasingDoubleKeyFrame();
                showKeyFrame1.KeyTime = TimeSpan.FromMilliseconds(0);
                showKeyFrame1.Value = -60;
                showKeyFrame1.EasingFunction = quadraticEase;

                EasingDoubleKeyFrame showKeyFrame2 = new EasingDoubleKeyFrame();
                showKeyFrame2.KeyTime = TimeSpan.FromMilliseconds(85);
                showKeyFrame2.Value = 0;
                showKeyFrame2.EasingFunction = quadraticEase;

                showAnimation.KeyFrames.Add(showKeyFrame1);
                showAnimation.KeyFrames.Add(showKeyFrame2);

                Storyboard.SetTargetProperty(showAnimation, new PropertyPath(PlaneProjection.RotationXProperty));
                Storyboard.SetTarget(showAnimation, content.Projection);

                _swivelShow.Children.Add(showAnimation);
            }
        }
    }
    _swivelShow.Begin();
}

但是:Storyboard.SetTarget(showAnimation, content.Projection)会抛出异常。 content.Projectionnull。怎么会发生这种情况?

1 个答案:

答案 0 :(得分:0)

您正在查看错误的Border元素。您的案例中的项容器的层次结构类似于Border - &gt; ContentControl - &gt; ContentPresenter - &gt; Border (这是你的)。因此,您必须深入到容器的子层次结构中才能找到所需的边框。

以下代码以递归方式搜索UIElement的子代,并提供一些调试输出,以便您可以看到它有多深。它会在找到名为“border”的控件时停止:

    private UIElement GetMyBorder(UIElement container)
    {
        if (container is FrameworkElement && ((FrameworkElement)container).Name == "border")
            return container;

        for (int i = 0; i < VisualTreeHelper.GetChildrenCount(container); i++)
        {
            var child = (FrameworkElement)VisualTreeHelper.GetChild(container, i);
            System.Diagnostics.Debug.WriteLine("Found child "+ child.ToString());

            System.Diagnostics.Debug.WriteLine("Going one level deeper...");
            UIElement foundElement = GetMyBorder(child);
            if (foundElement != null)
                return foundElement;
        }
        return null;
    }

使用它:

    Border content = (Border)GetMyBorder(container);