毫无意义的问题。可以删除
The pointless question. It can be deleted
这里是 link 到原来的 post:Animating a WPF window width and height。感谢您提供的示例。该代码效果很好。但仅限于主要 window。如果我创建一个 child window。 ChildWnd cw = new ChildWnd(); cw.Owner = 这个; cw.Show();我将所有代码完全相同地粘贴到这个 window 中。动画不起作用。没有错误,也没有动画。请帮助解决这个问题。我不擅长编组。但这对我的项目来说非常重要。
哦,谢谢,我已经明白了。有必要在两个地方用 child window 的 class 名称替换第三个参数。 DependencyProperty WindowHeightAnimationProperty 和 WindowWidthAnimationProperty:
public static readonly DependencyProperty WindowHeightAnimationProperty = DependencyProperty.Register("WindowHeightAnimation", typeof(double), typeof(ChildWnd), new PropertyMetadata(OnWindowHeightAnimationChanged));
这里是 link 到原来的 post:Animating a WPF window width and height。感谢您提供的示例。该代码效果很好。但仅限于主要 window。如果我创建一个 child window。 ChildWnd cw = new ChildWnd(); cw.Owner = 这个; cw.Show();我将所有代码完全相同地粘贴到这个 window 中。动画不起作用。没有错误,也没有动画。请帮助解决这个问题。我不擅长编组。但这对我的项目来说非常重要。
哦,谢谢,我已经明白了。有必要在两个地方用 child window 的 class 名称替换第三个参数。 DependencyProperty WindowHeightAnimationProperty 和 WindowWidthAnimationProperty:
public static readonly DependencyProperty WindowHeightAnimationProperty = DependencyProperty.Register("WindowHeightAnimation", typeof(double), typeof(ChildWnd), new PropertyMetadata(OnWindowHeightAnimationChanged));