Skip to content

Commit

Permalink
优化课程表自动滚动动画曲线,修改版本号为 3.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
STBBRD committed Aug 1, 2024
1 parent 788100e commit 9101000
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ZongziTEK_Blackboard_Sticker/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ private void ScrollToCurrentLesson()
From = ScrollViewerShowCurriculum.VerticalOffset,
To = offset,
Duration = TimeSpan.FromMilliseconds(1000),
EasingFunction = new CubicEase() { EasingMode = EasingMode.EaseInOut }
EasingFunction = new ExponentialEase() { EasingMode = EasingMode.EaseInOut, Exponent = 2 }
};
ScrollViewerShowCurriculum.BeginAnimation(ScrollViewerBehavior.VerticalOffsetProperty, offsetAnimation);
}
Expand Down
4 changes: 2 additions & 2 deletions ZongziTEK_Blackboard_Sticker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.1.0.2")]
[assembly: AssemblyFileVersion("3.1.0.2")]
[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyFileVersion("3.2.0.0")]

0 comments on commit 9101000

Please sign in to comment.