私はにWPF Storyboardを置き換えます。カスタムWHILEループを使用して可能かどうかを確認します。私が持っているコードは次のコードです。WPF StoryboardをカスタムWhileループに置き換えます。
public void RestartAnimation(int seconds)
{
da.From = this.ActualWidth;
da.To = -ContentActualWidth;
da.RepeatBehavior = RepeatBehavior.Forever;
da.Duration = new Duration(TimeSpan.FromSeconds(seconds));
Timeline.SetDesiredFrameRate(da, 15);
if (sb.Children.Count == 0)
{
sb.Children.Add(da);
Storyboard.SetTargetProperty(da, new PropertyPath("(Canvas.Left)"));
Storyboard.SetTarget(da, cp);
sb.Begin();
}
}
私はそれを行うことができる方法を任意の手掛かり
...それはそれの内側にいくつかのタイマー& WHILEなる必要がありますね?
ありがとうございます!