AnnotationService.DeleteAnnotationsCommand 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示命令,這個命令會刪除目前選取範圍中所有的筆墨/筆跡便箋、文字便箋和反白顯示附註。
public: static initonly System::Windows::Input::RoutedUICommand ^ DeleteAnnotationsCommand;
public static readonly System.Windows.Input.RoutedUICommand DeleteAnnotationsCommand;
staticval mutable DeleteAnnotationsCommand : System.Windows.Input.RoutedUICommand
Public Shared ReadOnly DeleteAnnotationsCommand As RoutedUICommand
欄位值
範例
下列範例示範如何將路由命令指派給 XAML 中的功能表項目。
<DocumentViewer.ContextMenu>
<ContextMenu>
<MenuItem Command="ApplicationCommands.Copy" />
<Separator />
<!-- Add a Highlight annotation to a user selection. -->
<MenuItem Command="ann:AnnotationService.CreateHighlightCommand"
Header="Add Highlight" />
<!-- Add a Text Note annotation to a user selection. -->
<MenuItem Command="ann:AnnotationService.CreateTextStickyNoteCommand"
Header="Add Text Note" />
<!-- Add an Ink Note annotation to a user selection. -->
<MenuItem Command="ann:AnnotationService.CreateInkStickyNoteCommand"
Header="Add Ink Note" />
<Separator />
<!-- Remove Highlights from a user selection. -->
<MenuItem Command="ann:AnnotationService.ClearHighlightsCommand"
Header="Remove Highlights" />
<!-- Remove Text Notes and Ink Notes from a user selection. -->
<MenuItem Command="ann:AnnotationService.DeleteStickyNotesCommand"
Header="Remove Notes" />
<!-- Remove Highlights, Text Notes, Ink Notes from a selection. -->
<MenuItem Command="ann:AnnotationService.DeleteAnnotationsCommand"
Header="Remove Highlights & Notes" />
</ContextMenu>
</DocumentViewer.ContextMenu>