6

我正在尝试使用 WPF 中的导航命令框架在 WPF 应用程序(桌面;不是 XBAP 或 Silverlight)中的页面之间导航。

我相信我已经正确配置了所有内容,但它无法正常工作。我构建并运行没有错误,我在输出窗口中没有收到任何绑定错误,但我的导航按钮被禁用。

这是示例应用程序的 app.xaml:

<Application x:Class="Navigation.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="First.xaml">
</Application>

请注意 StartupUri 指向 First.xaml。First.xaml 是一个页面。WPF 会自动在 NavigationWindow 中托管我的页面。这是 First.xaml:

<Page x:Class="Navigation.First"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="First">
    <Grid>
        <Button 
            CommandParameter="/Second.xaml" 
            CommandTarget="{Binding RelativeSource=
                {RelativeSource 
                    FindAncestor, 
                    AncestorType={x:Type NavigationWindow}}}" 
            Command="NavigationCommands.GoToPage" 
            Content="Go!"/>
    </Grid>
</Page>

按钮的 CommandTarget 设置为 NavigationWindow。命令是 GoToPage,页面是 /Second.xaml。我尝试将 CommandTarget 设置为包含页面,将 CommandParameter 设置为“Second.xaml”(First.xaml 和 Second.xaml 都在解决方案的根目录中),并且我尝试将 CommandTarget 留空。我还尝试将绑定路径设置为 NavigationWindow 上与导航相关的各种公共属性。到目前为止没有任何效果。

我在这里想念什么?我真的不想在代码中进行导航。


澄清。

如果我不使用按钮,而是使用超链接:

<Grid>
    <TextBlock>
       <Hyperlink 
           NavigateUri="Second.xaml">Go!
       </Hyperlink>
    </TextBlock>
</Grid>

一切都按预期工作。但是,我的 UI 要求意味着使用超链接是正确的。我需要一个胖乎乎的大按钮供人们按下。这就是我想使用按钮导航的原因。我只想知道如何让 Button 提供与 Hyperlink 在这种情况下相同的功能。

4

4 回答 4

4

根据文档DocumentViewer,仅FlowDocumentViewer具体执行此命令。您需要找到一个用于实现的导航命令,或者为此命令NavigationWindow设置一个并自行处理。CommandBinding

于 2009-04-29T19:44:19.020 回答
4

在 XAML 中:

<Button Command="{x:Static Views:Commands.NavigateHelp}" Content="Help"/>

在视图中(我们有一个Commands.cs包含所有这些的文件):

public static RoutedCommand NavigateHelp = new RoutedCommand();

在 Page 构造函数中,您可以将两者连接起来:

CommandBindings.Add(new CommandBinding(Commands.NavigateHelp, NavigateHelpExecute));

NavigateHelpExecute 可以在后面的代码中(这就是我们所做的),挂钩到 ViewModel 事件处理程序,或其他任何东西。这样做的好处是您可以像这样禁用其他导航:

CommandBindings.Add(new CommandBinding(NavigationCommands.Refresh, null));

希望这可以帮助。

于 2010-05-07T19:32:42.603 回答
2

您将希望按如下方式使用NavigationService您的:NavigationWindow

XAML:

    <Button HorizontalAlignment="Right" Name="continueButton" Width="75" Margin="0,0,8,11" Height="23" VerticalAlignment="Bottom" Click="continueButton_Click">
        Continue
    </Button>

C#:

    private void continueButton_Click(object sender, RoutedEventArgs e)
    {
        this.NavigationService.GoForward();
        //or
        this.NavigationService.Navigate("Second.xaml")
    }

使用其中任何一个都可以使用 use ,为了清楚起见this,我只在NavigationService此处显示

于 2009-07-28T22:16:32.927 回答
0
public class NavigateButton : Button
{
    public Uri NavigateUri { get; set; }

    public NavigateButton()
    {
        Click += NavigateButton_Click;
    }

    void NavigateButton_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        var navigationService = NavigationService.GetNavigationService(this);
        if (navigationService != null)
            navigationService.Navigate(NavigateUri);
    }
}

然后您可以将以下内容放入您的 xaml 中:

<local:NavigateButton Content="NavigateButton" NavigateUri="Page2.xaml"/>

然后你仍然不需要页面后面的代码,也不需要向视图模型添加命令。

于 2015-03-16T13:55:41.737 回答