How to detect click on `<div>` element contained in a WebView control on Visual Studio 2019?
问题 I want to use .Net WebView control in a WinForm to display Unicode characters greater than 0xFFFF. I have created following prototyp VB.Net program to load an HTML page containing Javascript and CSS Style. Dim sText As XElement = <html> <head> <style type="text/css"> .unicode { font-size: 32px; cursor: pointer; } </style> </head> <body> <script type='text/javascript'> function clickUnicode() { var sValue = this.event.srcElement.innerText alert('Click on Unicode character:' + sValue); } <