// Token: 0x0600478A RID: 18314 RVA: 0x00144E46 File Offset: 0x00143046
 private static bool IsMouseOver(CheckBox checkBox, RoutedEventArgs e)
 {
     return(checkBox.InputHitTest(((MouseButtonEventArgs)e).GetPosition(checkBox)) != null);
 }
 private static bool IsMouseOver(CheckBox checkBox, RoutedEventArgs e)
 {
     // This element is new, so the IsMouseOver property will not have been updated
     // yet, but there is enough information to do a hit-test.
     return checkBox.InputHitTest(((MouseButtonEventArgs)e).GetPosition(checkBox)) != null;
 }
Example #3
0
 private static bool IsMouseOver(CheckBox checkBox, RoutedEventArgs e)
 {
     // This element is new, so the IsMouseOver property will not have been updated
     // yet, but there is enough information to do a hit-test.
     return(checkBox.InputHitTest(((MouseButtonEventArgs)e).GetPosition(checkBox)) != null);
 }