1 write to floatingAnnotation
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (1)
127this.floatingAnnotation = this.AnnotationVisualProvider.GetFloatingAnnotation();
13 references to floatingAnnotation
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\Annotations\AnnotationManager.cs (13)
125if (this.floatingAnnotation == null) 129this.floatingAnnotation.IsReadOnly = this.EditingContext.Items.GetValue<ReadOnlyState>().IsReadOnly; 130this.floatingAnnotation.IsMouseOverChanged += new EventHandler(this.OnFloatingAnnotationIsMouseOverChanged); 131this.floatingAnnotation.IsKeyboardFocusWithinChanged += new DependencyPropertyChangedEventHandler(this.OnFloatingAnnotationIsKeyboardFocusWithinChanged); 132this.floatingAnnotation.DockButtonClicked += new Action(this.OnDockButtonClicked); 133this.floatingAnnotation.ModelItem = this.ModelItem; 136return this.floatingAnnotation; 282if (this.floatingAnnotation != null) 284this.floatingAnnotation.IsMouseOverChanged -= new EventHandler(this.OnFloatingAnnotationIsMouseOverChanged); 285this.floatingAnnotation.IsKeyboardFocusWithinChanged -= new DependencyPropertyChangedEventHandler(this.OnFloatingAnnotationIsKeyboardFocusWithinChanged); 286this.floatingAnnotation.DockButtonClicked -= new Action(this.OnDockButtonClicked); 326if (this.floatingAnnotation != null) 328this.floatingAnnotation.IsReadOnly = state.IsReadOnly;