我正面临FlipView的问题。我正在分享简约项目,它代表我在原始应用中的用例http://1drv.ms/163kHCR。
我有两页。首先是MainPage.xaml。它有五次翻转视图。前四个只有文本块,第五个有一个按钮。点击它我将被重定向到Next.xaml。请注意MainPage的NavigationCacheMode为NavigationCacheMode.Required [这是我的原始应用程序所必需的]。所以FlipView的最后一个已知索引是4。
在下一页中有一个按钮点击它,通过启动器打开邮件客户端。现在,当我从邮件客户端按回来时,我将被导航到下一页并再次按下,我将在MainPage上,所选索引将为4,这是正确的。现在,当我向右滑动以查看带有索引3的FlipViewItem时,它会立即显示第一个带有索引0的FlipViewItem。它只是跳过所有项目直到索引0。
代码中有什么问题吗?
MainPage.xaml中
<Grid Grid.Row="1" x:Name="ContentRoot">
<FlipView x:Name="fv">
<FlipViewItem>
<TextBlock Text="1" FontSize="50" />
</FlipViewItem>
<FlipViewItem>
<TextBlock Text="2" FontSize="50" />
</FlipViewItem>
<FlipViewItem>
<TextBlock Text="3" FontSize="50" />
</FlipViewItem>
<FlipViewItem>
<TextBlock Text="4" FontSize="50" />
</FlipViewItem>
<FlipViewItem>
<Button Content="Next" Click="btnNext_Click" />
</FlipViewItem>
</FlipView>
</Grid>
MainPage.xaml.cs中
public MainPage()
{
this.InitializeComponent();
this.navigationHelper = new NavigationHelper(this);
this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
NavigationCacheMode = NavigationCacheMode.Required;
}
private void btnNext_Click(object sender, RoutedEventArgs e)
{
Frame.Navigate(typeof(Next));
}
Next.xaml(未设置NavigationCacheMode)
<Grid Grid.Row="1" x:Name="ContentRoot">
<Button Content="Mail" Click="btnMail_Click" />
</Grid>
Next.xaml.cs
private async void btnMail_Click(object sender, RoutedEventArgs e)
{
var mailto = "mailto:?to=windows@microsoft.com&subject=Email&body=body";
await Windows.System.Launcher.LaunchUriAsync(new Uri(mailto));
}
答案 0 :(得分:1)
这似乎是一个已知的错误,当您在缓存页面中返回时,它会影响FlipView
控件。不确定最佳解决方法是什么,但您可以尝试一些事项 - 在InvalidateScrollInfo()
模板中的ScrollViewer
上调用FlipView's
,重置SelectedIndex
值(也许设置它)到某个其他值,然后立即到前一个),甚至可能重置ItemsSource
。
答案 1 :(得分:1)
支持Filip Skakun的回答(我的图腾太低而无法发表评论。)
DeviceUtility.FindControl<ScrollViewer>(this.FlipView, typeof(ScrollViewer)).InvalidateScrollInfo();
public static List<UIElement> GetAllChildControls(DependencyObject parent)
{
var controList = new List<UIElement>();
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(parent); i++)
{
var childControl = VisualTreeHelper.GetChild(parent, i);
if (childControl is UIElement)
{
controList.Add(childControl as UIElement);
}
controList.AddRange(GetAllChildControls(childControl));
}
return controList;
}
public static T FindControl<T>(DependencyObject parentContainer, Type controlType)
{
var childControls = GetAllChildControls(parentContainer);
var control = childControls.OfType<UIElement>().Where(x => x.GetType().Equals(controlType)).Cast<T>().First();
return control;
}