想用换行符替换“\n”
<VisualState x:Name="Snapped">
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Text" Storyboard.TargetName="textBlock">
<DiscreteObjectKeyFrame KeyTime="0" Value="Here is my text.\nThis is new line"/>
</Storyboard>
</VisualState>
输出文本是:没有换行符。Here is my text.\nThis is new line
PS:如果这个值可以用资源文件中的字符串填充就好了..!! 无论哪种方式都会帮助我,但后来一种是好方法。