3 writes to _currentToolTip
PresentationFramework (3)
src\Framework\System\Windows\Controls\PopupControlService.cs (3)
494_currentToolTip = tip; 499_currentToolTip = new ToolTip(); 608_currentToolTip = null;
22 references to _currentToolTip
PresentationFramework (22)
src\Framework\System\Windows\Controls\PopupControlService.cs (22)
407if ((o == LastChecked) || (o == LastMouseOverWithToolTip) || (o == _currentToolTip) || WithinCurrentToolTip(o)) 419if (_currentToolTip == null) 439((v is Visual && ((Visual)v).IsDescendantOf(_currentToolTip)) || 440(v is Visual3D && ((Visual3D)v).IsDescendantOf(_currentToolTip))); 497else if ((_currentToolTip == null) || !_ownToolTip) 501_currentToolTip.SetValue(ServiceOwnedProperty, BooleanBoxes.TrueBox); 508_currentToolTip.SetBinding(ToolTip.ContentProperty, binding); 511if (!_currentToolTip.StaysOpen) 518_currentToolTip.SetValue(OwnerProperty, o); 519_currentToolTip.Opened += OnToolTipOpened; 520_currentToolTip.Closed += OnToolTipClosed; 521_currentToolTip.FromKeyboard = fromKeyboard; 522_currentToolTip.IsOpen = true; 558if (_currentToolTip != null) 560bool isOpen = _currentToolTip.IsOpen; 577_currentToolTip.IsOpen = false; 582if (_currentToolTip != null) 589_forceCloseTimer.Tag = _currentToolTip; 602_currentToolTip.ClearValue(OwnerProperty); 605BindingOperations.ClearBinding(_currentToolTip, ToolTip.ContentProperty); 607_currentToolTip.FromKeyboard = false; 1069return _currentToolTip;