在Windows Phone 8.1应用程序中添加侧栏

时间:2015-01-29 03:38:30

标签: c# windows-phone-8.1 win-universal-app

我正在构建Windows Phone 8.1应用程序,我想要一个像Android应用程序一样的侧边栏。我该怎么办?

我尝试了this示例,但没有编译和操作事件不会触发。

2 个答案:

答案 0 :(得分:3)

这是速度处理的一个非常简单的例子。

确保将网格的Manipulation属性设置为All

将网格的背景从DarkSalmon更改为Transparent

enter image description here

<强> XAML

<Canvas Name="RootCanvas">
    <Canvas.Resources>
        <Storyboard x:Name="MoveAnimation">
            <DoubleAnimation Duration="0:0:0.2" To="0" Storyboard.TargetProperty="(Canvas.Left)" Storyboard.TargetName="Sidebar" d:IsOptimized="True" />
        </Storyboard>
    </Canvas.Resources>

    <Grid Name="Sidebar" Background="DarkSalmon" Width="360" Height="640" Canvas.Left="-340" ManipulationDelta="Sidebar_ManipulationDelta" ManipulationMode="All" ManipulationCompleted="Sidebar_ManipulationCompleted">
        <Grid Background="DarkSlateBlue" Margin="0,0,20,0">
            <StackPanel Orientation="Vertical">
                <Button Content="Mailbox" />
                <Button Content="Calendar" />
                <Button Content="Tasks" />
                <Button Content="Documents" />
            </StackPanel>
        </Grid>
    </Grid>
</Canvas>

<强>代码隐藏

private bool _triggerCompleted;

    private const double SideMenuCollapsedLeft = -340;
    private const double SideMenuExpandedLeft = 0;

    private void Sidebar_ManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
    {
        _triggerCompleted = true;

        double finalLeft = Canvas.GetLeft(Sidebar) + e.Delta.Translation.X;
        if (finalLeft < -340 || finalLeft > 0)
            return;

        Canvas.SetLeft(Sidebar, finalLeft);

        if (e.IsInertial && e.Velocities.Linear.X > 1)
        {
            _triggerCompleted = false;
            e.Complete();
            MoveLeft(SideMenuExpandedLeft);
        }

        if (e.IsInertial && e.Velocities.Linear.X < -1)
        {
            _triggerCompleted = false;
            e.Complete();
            MoveLeft(SideMenuCollapsedLeft);
        }

        if (e.IsInertial && Math.Abs(e.Velocities.Linear.X) <= 1)
            e.Complete();
    }

    private void Sidebar_ManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
    {
        if (_triggerCompleted == false)
            return;

        double finalLeft = Canvas.GetLeft(Sidebar);

        if (finalLeft > -170)
            MoveLeft(SideMenuExpandedLeft);
        else
            MoveLeft(SideMenuCollapsedLeft);
    }

    private void MoveLeft(double left)
    {
        double finalLeft = Canvas.GetLeft(Sidebar);

        Storyboard moveAnivation = ((Storyboard)RootCanvas.Resources["MoveAnimation"]);
        DoubleAnimation direction = ((DoubleAnimation)((Storyboard)RootCanvas.Resources["MoveAnimation"]).Children[0]);

        direction.From = finalLeft;

        moveAnivation.SkipToFill();

        direction.To = left;

        moveAnivation.Begin();
    }

答案 1 :(得分:0)

您可以尝试此解决方案:

http://slideview.codeplex.com/

希望它会有所帮助。