NavigationCommands.Favorites 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得代表 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 文字 | 我的最愛 |
範例
下列範例示範如何實作搭配 回應 Favorites 命令 Frame的程序代碼。
<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 Attribute Usage
<object property="NavigationCommands.Favorites"/>