예제 #1
0
 public static bool IsGestureEvent(this RoutedEventFlag flag) => (flag & _isGesture) != 0;
예제 #2
0
 public static bool IsContextEvent(this RoutedEventFlag flag) => (flag & _isContextMenu) != 0;
예제 #3
0
 public static bool IsManipulationEvent(this RoutedEventFlag flag) => (flag & _isManipulation) != 0;
예제 #4
0
 public static bool IsDragAndDropEvent(this RoutedEventFlag flag) => (flag & _isDragAndDrop) != 0;
예제 #5
0
 public static bool IsFocusEvent(this RoutedEventFlag flag) => (flag & _isFocus) != 0;
예제 #6
0
 public static bool IsKeyEvent(this RoutedEventFlag flag) => (flag & _isKey) != 0;
예제 #7
0
 public static bool IsPointerEvent(this RoutedEventFlag flag) => (flag & _isPointer) != 0;