无法将动画应用于页面WPF c#中的父帧

时间:2018-03-11 20:46:46

标签: c# wpf storyboard

我在page中有Frame。我要做的是将故事板/动画从页面应用到父Frame。通常,从用户控件,我使用以下代码来获取父代:

var parent = (Frame)this.Parent;

但是如果我在页面中使用相同的代码来获取父框架并应用动画:

private void Goback_MouseDown(object sender, MouseButtonEventArgs e)
{
Storyboard sb = new Storyboard;
sb = this.FindResource("HideMainframe");
var parent = (Frame)this.Parent;
Storyboard.SetTarget(sb, parent);
sb.Begin();
}

故事板

 <Storyboard x:Key="HideMainframe" Storyboard.TargetProperty="Opacity" >
        <DoubleAnimation Duration="0:0:0.5" To="0" >
            <DoubleAnimation.EasingFunction>
                <CircleEase  EasingMode="EaseIn"/>
            </DoubleAnimation.EasingFunction>
        </DoubleAnimation>
    </Storyboard>

我得到一个例外:No target was specified for 'System.Windows.Media.Animation.DoubleAnimation'.。在网络上,我开始了解VisualTreeHelper课程,但在此之前,我想知道,为什么我的代码无效?或者具体而言,为什么我不能从页面中获取父框架?

1 个答案:

答案 0 :(得分:1)

所以看起来在框架中导航的页面不包含“父”值,这就是为什么你指定的方法不起作用,但走VisualTreeHelper的方法。通过Frame通过Page构造函数,可以轻松简化您要实现的目标。

您的网页代码背后

Frame f;
public Page1(Frame frame)
{
    f = frame;
    InitializeComponent();
}

您的按钮逻辑

private void Goback_MouseDown(object sender, MouseButtonEventArgs e)
{
   Storyboard sb = (Storyboard)this.TryFindResource("HideMainframe");
   Storyboard.SetTarget(sb, f);
   sb.Begin();
}

因此,在浏览框架时,您只需将其传递出去。

myFrame.Navigate(new Page1(myFrame));