public override void OnPointerReleased(IPointerReleasedEventArgs e) { if (e.CurrentPoint.Properties.PointerUpdateKind == PointerUpdateKind.LeftButtonReleased) { m_Dragging = false; e.Handled = true; } }
public override void OnPointerReleased(IPointerReleasedEventArgs e) { IPointerPointProperties props = e.CurrentPoint.Properties; if (props.PointerUpdateKind == PointerUpdateKind.LeftButtonReleased) { HandleLeftButtonUp(e); m_Pointer = null; m_Position = null; } }
public virtual void OnPointerReleased(IPointerReleasedEventArgs e) { }
public void OnPointerReleased(IPointerReleasedEventArgs e) { ApplyToInteractions(i => i.OnPointerReleased(e), e); }