7

我是 Blend 和 Sketchflow 的新手。我希望有一个人可以帮助我。

我一直在做一个草图流项目,并设置了几个导航到特定屏幕的按钮(很好也很简单)。

现在抓住...

我在顶部做了一个通用菜单,并在上面放了一个按钮,我想用它实现的是,如果有人单击该按钮,而不是导航到特定屏幕,它只是导航到上一个屏幕这是在sketchflow中查看的。

有谁知道这是否可能?如果是这样,我将如何实现这一目标?

4

2 回答 2

8

使用“后退”行为。有两种简单的方法可以将此行为应用于您的按钮:

  1. 右键单击画板中的按钮,选择“导航至”->“返回”或
  2. 打开资产面板,SketchFlow->Behaviors->NavigateBackAction,将此行为拖到您的按钮上。

xaml 应类似于以下内容:

<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:pb="clr-namespace:Microsoft.Expression.Prototyping.Behavior;assembly=Microsoft.Expression.Prototyping.Interactivity"
x:Class="SilverlightPrototype12Screens.Screen_1"
Width="640" Height="480">

<Grid x:Name="LayoutRoot" Background="White">
    <Button Height="66" Margin="241,68,275,0" VerticalAlignment="Top" Content="Button">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName="Click">
                <pb:NavigateBackAction/>
            </i:EventTrigger>
        </i:Interaction.Triggers>
    </Button>
</Grid>

于 2010-01-21T15:40:14.370 回答
6

我一直在寻找同样的问题,但我想从 c#.net 导航。

我找到了以下解决方案:

private void Navigate(object sender, RoutedEventArgs e)
{
   Microsoft.Expression.Prototyping.Services.PlayerContext.Instance.ActiveNavigationViewModel.NavigateToScreen("WpfPrototype2Screens.Screen_2", true);
}

在这个论坛

于 2010-06-23T14:08:56.357 回答