When using CefSharp in a windows forms app, the mouse cursor disappears if it is over the control.
You should be able to reconstruct this:
- Save the minimal html file provided (attached and cited)
- Execute the CefSharp Windows Forms Demo
- Enter the local address of this file in the address bar
- Press Enter
- Now, when entering with the mouse, the mouse cursor should disappear
- The funny thing is, the cursor does reappear when hovering over the zoom-buttons in the upper left corner.
Minimal html:
<title>No cursor sample</title>
<script type="text/javascript">
map = L.map('map').setView([45.80949, 11.05501], 13);
<body onLoad="javascript:init();">
<div id="map" style="height: 100%; width: 100%;"></div>
(Note: you are probably not seeing any map tiles, because no tile-layer was added, nevertheless, the example shows the disappearing mouse cursor).
The Mouse cursor does not disappear when trying this sample in a desktop browser.
Best
Josef