In the below code I am using the hook global event and I want to highlight the cursor point when Starter
function is executing.
private void Starter(int cnt)
{
try
{
if (cnt > 0)
{
Hook.GlobalEvents().MouseClick += CallingShow;
System.Windows.Forms.Application.Run(new ApplicationContext());
}
}
catch (Exception ex)
{
ErrorLog.Log(ex);
}
}
question from:https://stackoverflow.com/questions/66058872/how-we-can-highlight-the-cursor-point-element-on-mouse-hover