我无法为android arm-64位架构构建libx264代码。 以下是我试过的命令。
ii
请指教。 提前谢谢。
答案 0 :(得分:1)
你可以尝试下面的内容:
private void scrollViewer_Loaded(object sender, RoutedEventArgs e)
{
timer.Tick += (ss, ee) =>
{
if (timer.Interval.Ticks == 300)
{
//each time set the offset to scrollviewer.HorizontalOffset + 5
scrollviewer.ScrollToHorizontalOffset(scrollviewer.HorizontalOffset + 5);
//if the scrollviewer scrolls to the end, scroll it back to the start.
if (scrollviewer.HorizontalOffset == scrollviewer.ScrollableWidth)
scrollviewer.ScrollToHorizontalOffset(0);
}
};
timer.Interval = new TimeSpan(300);
timer.Start();
}
private void scrollviewer_Unloaded(object sender, RoutedEventArgs e)
{
timer.Stop();
}