AnnotationStore.DeleteAnnotation(Guid) Метод

Определение

Удаляет из хранилища заметку с заданным Id.

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

Параметры

annotationId
Guid

Свойство Id GUID удаляемой заметки.

Возвращаемое значение

Annotation

Удаленная заметка; в противном случае — null, если заметка с заданным annotationId в хранилище не найдена.

Исключения

В хранилище уже выполнен вызов Dispose.

Примеры

В следующем примере показано использование DeleteAnnotation методов и 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();
}

Применяется к

См. также раздел