WPF 中是否有任何相当于 Flash 的打字机效果?
问问题
2737 次
2 回答
7
好的,我成功了!
private void TypewriteTextblock(string textToAnimate, TextBlock txt, TimeSpan timeSpan)
{
Storyboard story = new Storyboard();
story.FillBehavior = FillBehavior.HoldEnd;
story.RepeatBehavior = RepeatBehavior.Forever;
DiscreteStringKeyFrame discreteStringKeyFrame;
StringAnimationUsingKeyFrames stringAnimationUsingKeyFrames = new StringAnimationUsingKeyFrames();
stringAnimationUsingKeyFrames.Duration = new Duration(timeSpan);
string tmp = string.Empty;
foreach(char c in textToAnimate)
{
discreteStringKeyFrame = new DiscreteStringKeyFrame();
discreteStringKeyFrame.KeyTime = KeyTime.Paced;
tmp += c;
discreteStringKeyFrame.Value = tmp;
stringAnimationUsingKeyFrames.KeyFrames.Add(discreteStringKeyFrame);
}
Storyboard.SetTargetName(stringAnimationUsingKeyFrames, txt.Name);
Storyboard.SetTargetProperty(stringAnimationUsingKeyFrames, new PropertyPath(TextBlock.TextProperty));
story.Children.Add(stringAnimationUsingKeyFrames);
story.Begin(txt);
}
但是有没有办法让角色淡入淡出?
于 2010-08-07T19:59:14.523 回答
0
打字机效果是指逐个字母显示的字符串?
您可以使用StringAnimationUsingKeyframes对象实现类似的效果,但是,您必须手动输入每个字符串值。
要自动创建此效果,您必须编写自己的动画对象,很可能是基于StringAnimationBase类的动画对象。
于 2010-08-07T15:28:36.200 回答