无法解析TargetName - Silverlight4 C#

时间:2010-03-24 20:17:53

标签: c# silverlight animation silverlight-4.0

我收到错误无法解析TargetName grdGeneral 。我想要做的是有一个淡出功能,它接受一个网格并将不透明度淡化为零。我在MouseLeftButtonDown上调用了这个函数,并在 xaml和表单加载后加载了

呼唤淡出:

private void imgNext_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            fadeOut(grdGeneral);            
        }

淡出功能:

private void fadeOut(Grid pGrid)
        {
            Storyboard stb = new Storyboard();

            DoubleAnimation da = new DoubleAnimation();
            da.From = 1.0;
            da.To = 0.0;

            stb.Duration = new Duration(TimeSpan.FromSeconds(.75));
            stb.Children.Add(da);

            Storyboard.SetTargetName(da, pGrid.Name);
            Storyboard.SetTargetProperty(da, new PropertyPath(Grid.OpacityProperty));

            stb.Begin();
        }

我参与了一些教程网站,我的代码似乎遵循相同的顺序。在你说重新发布之前,我也一直在这个stackoverflow question上。这个问题必须处理多个问题,我只是想开始动画。

堆栈跟踪

System.InvalidOperationException was unhandled by user code
  Message=Cannot resolve TargetName grdGeneral.
  StackTrace:
       at MS.Internal.XcpImports.MethodEx(IntPtr ptr, String name, CValue[] cvData)
       at MS.Internal.XcpImports.MethodEx(DependencyObject obj, String name)
       at System.Windows.Media.Animation.Storyboard.Begin()
       at MeterTesting.QuarterReportGUI.fadeOut(Grid pGrid)
       at MeterTesting.QuarterReportGUI.imgNext_MouseLeftButtonDown(Object sender, MouseButtonEventArgs e)
       at MS.Internal.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
       at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName)
  InnerException: 

3 个答案:

答案 0 :(得分:5)

而不是使用

 Storyboard.SetTargetName(da, pGrid.Name);

 Storyboard.SetTarget(da, pGrid);

答案 1 :(得分:3)

如果你不是必须的话,你真的不应该尝试编写这样的故事板。一旦你的动画变得有点复杂,它就会咬你。

您应该在xaml中执行此操作,最好使用Blend。在你的xaml中试试这个:

<UserControl.Resources>
    <Storyboard x:Name="FadeGrid">
        <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="grdGeneral">
            <EasingDoubleKeyFrame KeyTime="0" Value="1"/>
            <EasingDoubleKeyFrame KeyTime="0:0:0.7" Value="0"/>
        </DoubleAnimationUsingKeyFrames>
    </Storyboard>
</UserControl.Resources>

<Grid x:Name="grdGeneral" Background="White">
    <Image x:Name="imgNext" MouseLeftButtonDown="imgNext_MouseLeftButtonDown" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Source="/StoryboardInCode;component/Images/avatar.jpg"></Image>
</Grid>

在你的代码中,你会像这样调用它:

private void imgNext_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    {
        FadeGrid.Begin();
    }

这应该可以为您提供所需的信息。

使用按钮代替图像也会更好。

答案 2 :(得分:1)

首先,为<DoubleAnimationUsingKeyFrames x:name="da1Load">命名 代码背后:

da1Load.SetValue(Storyboard.TargetNameProperty, "grdWithNewName")