NavigationCommands.Favorites 属性

定义

获取表示 Favorites 命令的值。

public:
 static property System::Windows::Input::RoutedUICommand ^ Favorites { System::Windows::Input::RoutedUICommand ^ get(); };
public static System.Windows.Input.RoutedUICommand Favorites { get; }
static member Favorites : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly Property Favorites As RoutedUICommand

属性值

路由的 UI 命令。

默认值
键笔势 CTRL+I
UI 文本 收藏夹

示例

以下示例演示如何实现与 一起Frame响应 Favorites 命令的代码。

<Window
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="SDKSample.Favorites">
<!-- NavigationCommands.Favorites -->
<MenuItem Command="NavigationCommands.Favorites">
  <MenuItem.CommandBindings>
    <!-- NavigationCommands.Favorites Binding-->
    <CommandBinding
      Command="NavigationCommands.Favorites"
      CanExecute="navigationCommandFavorites_CanExecute"
      Executed="navigationCommandFavorites_Executed" />
  </MenuItem.CommandBindings>
</MenuItem>
<Frame Name="frame" NavigationUIVisibility="Hidden" Source="Page1.xaml" />
</Window>

注解

此命令指示要管理和导航到收藏夹的意图。

对于任何给定的 WPF 类上的 Favorites 命令,没有用于响应命令的实现。 因此,需要提供适当的实现,如示例中所示。

XAML 属性用法

<object property="NavigationCommands.Favorites"/>  

适用于

另请参阅