3 writes to _currentToolTip
PresentationFramework (3)
System\Windows\Controls\PopupControlService.cs (3)
448
_currentToolTip
= tip;
452
_currentToolTip
= new ToolTip();
566
_currentToolTip
= null;
18 references to _currentToolTip
PresentationFramework (18)
System\Windows\Controls\PopupControlService.cs (18)
425
Debug.Assert(
_currentToolTip
== null);
439
show = !args.Handled && (
_currentToolTip
== null);
453
_currentToolTip
.SetValue(ServiceOwnedProperty, BooleanBoxes.TrueBox);
460
_currentToolTip
.SetBinding(ToolTip.ContentProperty, binding);
463
if (!
_currentToolTip
.StaysOpen)
470
_currentToolTip
.SetValue(OwnerProperty, o);
471
_currentToolTip
.Closed += OnToolTipClosed;
472
_currentToolTip
.FromKeyboard = fromKeyboard;
474
if (!
_currentToolTip
.IsOpen)
477
_currentToolTip
.Opened += OnToolTipOpened;
478
_currentToolTip
.IsOpen = true;
484
SetSafeArea(
_currentToolTip
);
503
ToolTip currentToolTip =
_currentToolTip
;
565
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
; }