OnMouseLeaveBase() public method

Base implementation of the virtual MouseLeave event handler.
public OnMouseLeaveBase ( ) : void
return void
 /// <summary>
 /// Provides handling for the MouseLeave event.
 /// </summary>
 /// <param name="e">The data for the event.</param>
 protected override void OnMouseLeave(MouseEventArgs e)
 {
     if (_interaction.AllowMouseLeave(e))
     {
         _interaction.OnMouseLeaveBase();
         base.OnMouseLeave(e);
     }
 }