7 references to IsDescendant
PresentationFramework (7)
System\Windows\Controls\ComboBox.cs (2)
1679
if (Mouse.Captured == null || !MenuBase.
IsDescendant
(comboBox, Mouse.Captured as DependencyObject))
1686
if (MenuBase.
IsDescendant
(comboBox, e.OriginalSource as DependencyObject))
System\Windows\Controls\Primitives\MenuBase.cs (4)
382
return
IsDescendant
(this, node);
540
if (Mouse.Captured == null || !MenuBase.
IsDescendant
(menu, Mouse.Captured as DependencyObject))
547
if (MenuBase.
IsDescendant
(menu, e.OriginalSource as DependencyObject))
807
if (!
IsDescendant
(this, Mouse.Captured as Visual) && !Mouse.Capture(this, CaptureMode.SubTree))
System\Windows\Controls\Primitives\Popup.cs (1)
1247
bool newCaptureInsidePopup = childPopupTookCapture || (Mouse.Captured != null && MenuBase.
IsDescendant
(root, Mouse.Captured as DependencyObject));