3 writes to _currentToolTip
PresentationFramework (3)
System\Windows\Controls\PopupControlService.cs (3)
439
_currentToolTip
= tip;
443
_currentToolTip
= new ToolTip();
561
_currentToolTip
= null;
18 references to _currentToolTip
PresentationFramework (18)
System\Windows\Controls\PopupControlService.cs (18)
416
Debug.Assert(
_currentToolTip
== null);
430
show = !args.Handled && (
_currentToolTip
== null);
444
_currentToolTip
.SetValue(ServiceOwnedProperty, BooleanBoxes.TrueBox);
453
_currentToolTip
.SetBinding(ToolTip.ContentProperty, binding);
456
if (!
_currentToolTip
.StaysOpen)
463
_currentToolTip
.SetValue(OwnerProperty, o);
464
_currentToolTip
.Closed += OnToolTipClosed;
465
_currentToolTip
.FromKeyboard = fromKeyboard;
467
if (!
_currentToolTip
.IsOpen)
470
_currentToolTip
.Opened += OnToolTipOpened;
471
_currentToolTip
.IsOpen = true;
477
SetSafeArea(
_currentToolTip
);
498
ToolTip currentToolTip =
_currentToolTip
;
560
ToolTip currentToolTip =
_currentToolTip
;
689
if (
_currentToolTip
== null)
709
((v is Visual && ((Visual)v).IsDescendantOf(
_currentToolTip
)) ||
710
(v is Visual3D && ((Visual3D)v).IsDescendantOf(
_currentToolTip
)));
793
get { return
_currentToolTip
; }