2012-01-16 78 views
4

在WP7 silverlight應用程序中,我想對特定事件使用故事板動畫。 動畫正在將按鈕高度屬性從x更改爲y點(更改爲查詢)。自定義故事板中的「無法解析TargetName」錯誤

我使用下面的代碼在我的程序

Storyboard myStoryBoard = new Storyboard(); 
    myStoryBoard.Duration = new Duration(TimeSpan.FromMilliseconds(200)); 

    DoubleAnimation myDoubleAnimation = new DoubleAnimation(); 
    Storyboard.SetTargetName(myDoubleAnimation, button1.Name); // button1 is normal button on UI 
    Storyboard.SetTargetProperty(myDoubleAnimation, new PropertyPath(Button.HeightProperty)); 

    myDoubleAnimation.From = 200; 
    myDoubleAnimation.To = 300; 

    myStoryBoard.Children.Add(myDoubleAnimation); 
    myStoryBoard.Begin(); 

當我運行我的代碼,我與 打無法解析的TargetName Button1的錯誤

任何簡單的辦法解決我的問題?

回答