3 writes to _currentToolTip
PresentationFramework (3)
System\Windows\Controls\PopupControlService.cs (3)
440
_currentToolTip
= tip;
444
_currentToolTip
= new ToolTip();
562
_currentToolTip
= null;
18 references to _currentToolTip
PresentationFramework (18)
System\Windows\Controls\PopupControlService.cs (18)
417
Debug.Assert(
_currentToolTip
== null);
431
show = !args.Handled && (
_currentToolTip
== null);
445
_currentToolTip
.SetValue(ServiceOwnedProperty, BooleanBoxes.TrueBox);
454
_currentToolTip
.SetBinding(ToolTip.ContentProperty, binding);
457
if (!
_currentToolTip
.StaysOpen)
464
_currentToolTip
.SetValue(OwnerProperty, o);
465
_currentToolTip
.Closed += OnToolTipClosed;
466
_currentToolTip
.FromKeyboard = fromKeyboard;
468
if (!
_currentToolTip
.IsOpen)
471
_currentToolTip
.Opened += OnToolTipOpened;
472
_currentToolTip
.IsOpen = true;
478
SetSafeArea(
_currentToolTip
);
499
ToolTip currentToolTip =
_currentToolTip
;
561
ToolTip currentToolTip =
_currentToolTip
;
693
if (
_currentToolTip
== null)
713
((v is Visual && ((Visual)v).IsDescendantOf(
_currentToolTip
)) ||
714
(v is Visual3D && ((Visual3D)v).IsDescendantOf(
_currentToolTip
)));
797
get { return
_currentToolTip
; }