예제 #1
0
 /// <summary>
 ///     This method is invoked when the mouse leaves the rating item.
 /// </summary>
 /// <param name="e">Information about the event.</param>
 protected override void OnMouseLeave(MouseEventArgs e)
 {
     if (Interaction.AllowMouseLeave(e))
     {
         Interaction.UpdateVisualStateBase(true);
     }
     base.OnMouseLeave(e);
 }
예제 #2
0
 /// <summary>
 /// Provides handling for the MouseLeave event.
 /// </summary>
 /// <param name="e">Event arguments.</param>
 protected override void OnMouseLeave(MouseEventArgs e)
 {
     if (Interaction.AllowMouseLeave(e))
     {
         Interaction.OnMouseLeaveBase();
         base.OnMouseLeave(e);
     }
 }
예제 #3
0
 /// <summary>
 /// Provides handling for the MouseLeave event.
 /// </summary>
 /// <param name="e">Event arguments.</param>
 protected override void OnPointerExited(PointerRoutedEventArgs e)
 {
     if (Interaction.AllowMouseLeave(e))
     {
         Interaction.OnMouseLeaveBase();
         base.OnPointerExited(e);
     }
 }