Beispiel #1
0
        /// <summary>
        /// Handle mouse leave to handle hover cursor.
        /// </summary>
        /// <param name="parent">the control hosting the html to set cursor and invalidate</param>
        public void HandleMouseLeave(Control parent)
        {
            ArgChecker.AssertArgNotNull(parent, "parent");

            _htmlContainerInt.HandleMouseLeave(new ControlAdapter(parent, _useGdiPlusTextRendering));
        }
Beispiel #2
0
 /// <summary>
 /// Handle mouse leave to handle hover cursor.
 /// </summary>
 /// <param name="parent">the control hosting the html to set cursor and invalidate</param>
 public void HandleMouseLeave()
 {
     _htmlContainerInt.HandleMouseLeave(new ControlAdapter(SDL2Adapter.Instance));
 }