0

我目前正在使用 Ms Visual Studio 2012,Windows 商店应用程序来创建 pacman 游戏。我一直面临如下所示的一些错误。希望是否有人可以帮助我解决它?谢谢..

代码:

Storyboard.SetTargetProperty(leftAnimation, new PropertyPath("(Canvas.Left)"));

错误显示:

'Windows.UI.Xaml.Media.Animation.Storyboard.SetTargetProperty(Windows.UI.Xaml.Media.Animation.Timeline, string)' 的最佳重载方法匹配有一些无效参数

4

1 回答 1

1

Metro (confusingly) has a different signature. Rather than a PropertyPath it takes a string :/

http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.media.animation.storyboard.settargetproperty.aspx

于 2013-10-08T23:08:25.900 回答