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