0

SL 4アプリをSL5に移行しようとすると、アプリのコンパイル時に次のエラーが発生しました。

Error   17  The tag 'GoToStateAction' does not exist in XML namespace 
'http://schemas.microsoft.com/expression/2010/interactions'.    

Error   31  The type 'GoToStateAction' from assembly 'Microsoft.Expression.Interactions' is built with an older version of the Blend SDK, and is not supported in a Silverlight 5 project.  

このエラーのxamlは次のとおりです。xmlns:i = "http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei = "http://schemas.microsoft.com/expression/2010/interactions"

   <i:Interaction.Triggers>
                <i:EventTrigger EventName="MouseEnter">
                    <ei:GoToStateAction StateName="ShowStatus"/>
                </i:EventTrigger>
                <i:EventTrigger EventName="MouseLeave">
                    <ei:GoToStateAction StateName="HideStatus"/>
                </i:EventTrigger>
            </i:Interaction.Triggers>

この問題を解決するにはどうすればよいですか?

4

1 に答える 1

2

解決策: SL5 の Blend Preview をインストールします。ありがとう。

于 2012-07-16T18:24:21.977 に答える