Compartilhar via


AnnotationStore.DeleteAnnotation(Guid) Método

Definição

Exclui a anotação com o Id especificado do repositório.

public:
 abstract System::Windows::Annotations::Annotation ^ DeleteAnnotation(Guid annotationId);
public abstract System.Windows.Annotations.Annotation DeleteAnnotation (Guid annotationId);
abstract member DeleteAnnotation : Guid -> System.Windows.Annotations.Annotation
Public MustOverride Function DeleteAnnotation (annotationId As Guid) As Annotation

Parâmetros

annotationId
Guid

A propriedade Id do GUID da anotação a ser excluída.

Retornos

Annotation

A anotação que foi excluída; caso contrário, null se uma anotação com o annotationId especificado não for encontrada no repositório.

Exceções

Dispose foi chamado no repositório.

Exemplos

O exemplo a seguir mostra o uso dos métodos e do DeleteAnnotation uso Flush .

// ------------------------- DeleteMark_Click -------------------------
void DeleteMark_Click(object sender, RoutedEventArgs e)
{
    Annotation ann = ((MenuItem)sender).Tag as Annotation;
    _annStore.DeleteAnnotation(ann.Id);
    _annStore.Flush();

    MenuItem thisMenu = sender as MenuItem;
    ContextMenu parentMenu = thisMenu.Parent as ContextMenu;
    FrameworkElement dObj =
        parentMenu.PlacementTarget as FrameworkElement;
    while (!(dObj is StackPanel))
    {
        dObj = dObj.Parent as FrameworkElement;
    }

    ListBox collection = dObj.Parent as ListBox;
    collection.Items.Remove(dObj);
    Util.FlushDispatcher();
}

Aplica-se a

Confira também