强制枢轴项目在显示之前预加载

CKI*_*KII 5 c# windows-runtime winrt-xaml windows-phone-8.1

我有一个带有几个PivotItems的Pivot,其中一个包含一个画布,它将项目放在动态位置(取决于数据).我得到了数据,我可以在用户可以选择此项之前将项目放在它们的位置(这不是第一个支点).但是,只有当我选择PivotItem时,画布才会呈现自己,因此您可以在它显示之前看到它闪烁.

有没有办法强制画布在显示之前渲染,所以一切都是在用户看到之前准备的?

我的代码看起来像这样:

在page.xaml.cs中:

private async void GameCenterView_OnDataContextChanged(object sender, EventArgs e)
{
    // Load data...

    // Handle other pivots

    // This is the problem pivot
    if (ViewModel.CurrentGame.SportTypeId == 1)
    {
        _hasLineups = ViewModel.CurrentGame.HasLineups.GetValueOrDefault();
        HasFieldPositions = ViewModel.CurrentGame.HasFieldPositions.GetValueOrDefault();

        // I only add the pivot when I need it, otherwise, it won't be shown
        if (_hasLineups)
        {
            if (MainPivot.Items != null) MainPivot.Items.Add(LineupPivotItem);
        }

        if (HasFieldPositions)
        {
            // Here I place all the items in their proper place on the canvas
            ArrangeLineup(ViewModel.TeamOneLineup, TeamOneCanvas);
            ArrangeLineup(ViewModel.TeamTwoLineup, TeamTwoCanvas);
        }
    }

    // Handle other pivots
}

private void ArrangeLineup(ObservableCollection<PlayerInLineupViewModel> teamLineup, RationalCanvas canvas)
{
    if (teamLineup == null)
        return;

    foreach (var player in teamLineup)
    {
        var control = new ContentControl
        {
            Content = player,
            ContentTemplate = LinupPlayerInFieldDataTemplate
        };
        control.SetValue(RationalCanvas.RationalTopProperty, player.Player.FieldPositionLine);
        control.SetValue(RationalCanvas.RationalLeftProperty, player.Player.FieldPositionSide);

        canvas.Children.Add(control);
    }
}
Run Code Online (Sandbox Code Playgroud)

画布不是库存画布.我创建了一个新的画布,根据它们的相对位置显示项目(我得到的位置是0-99).

逻辑发生在OverrideArrange方法中:

protected override Size ArrangeOverride(Size finalSize)
{
    if (finalSize.Height == 0 || finalSize.Width == 0)
    {
        return base.ArrangeOverride(finalSize);
    }

    var yRatio = finalSize.Height/100.0;
    var xRatio = finalSize.Width/100.0;

    foreach (var child in Children)
    {
        var top = (double) child.GetValue(TopProperty);
        var left = (double) child.GetValue(LeftProperty);

        if (top > 0 || left > 0)
            continue;

        var rationalTop = (int) child.GetValue(RationalTopProperty);
        var rationalLeft = (int) child.GetValue(RationalLeftProperty);

        if (InvertY)
            rationalTop = 100 - rationalTop;

        if (InvertX)
            rationalLeft = 100 - rationalLeft;

        child.SetValue(TopProperty, rationalTop*yRatio);
        child.SetValue(LeftProperty, rationalLeft*xRatio);
    }

    return base.ArrangeOverride(finalSize);
}
Run Code Online (Sandbox Code Playgroud)

谢谢.

Pet*_*SFT 5

您可以尝试多种技巧。例如:

  1. 在你ArrangeOverride可以短路逻辑,如果规模还没有,因为你执行的最后一次修改(该数据是一样的)
  2. 确保您正在收听有关Pivot告诉您准备演示的事件-PivotItemLoading例如
  3. 您可以让控件实际上不是 的一部分Pivot,而是位于父容器(例如 a Grid)中并使其Opacity为零。然后在目标PivotItem进入视野时将其设置为 100 。