gpt4 book ai didi

c# - System.Windows.Media.Animation 警告 : 6

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:44 27 4
gpt4 key购买 nike

当我使用 Storyboard在 wpf 中运行动画时,输出窗口出现以下错误。

System.Windows.Media.Animation Warning: 6 : Unable to perform action because the specified Storyboard was never applied to this object for interactive control.; Action='Stop'; Storyboard='System.Windows.Media.Animation.Storyboard'; Storyboard.HashCode='57850459'; Storyboard.Type='System.Windows.Media.Animation.Storyboard'; TargetElement='System.Windows.Media.Animation.Storyboard'; TargetElement.HashCode='57850459'; TargetElement.Type='System.Windows.Media.Animation.Storyboard'

谁能告诉我它将如何影响我的程序以及如何删除它?

我没有在 .xaml 文件中定义 Storyboard。但是当代码隐藏在设计文件 (.xaml) 中时,我在类中创建了私有(private) stoaryboard,并且我在代码中使用以下语法将它分配给框架元素。

this.storyboard1.Begin(this.viewbox1, true);

其中 storyboard1 是我在类中创建的对象,viewbox1 是我要应用此动画的元素。

有人能帮帮我吗?提前致谢。

最佳答案

我也有这个警告,但发现在 Begin 调用中指定的“containingElement”也必须在 Stop 调用中指定,这应该会消除警告。

this.storyboard1.Begin(this.viewbox1, true);

this.storyboard1.Stop(this.viewbox1);

关于c# - System.Windows.Media.Animation 警告 : 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18826395/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com