c# - CefSharp BrowserControl - Image Hyperlinks open in new Form -
hope give me advice or point me direction.
im using cefsharp browser control in application, 1 if things im struggling when click on image hyperlinks (or hyperlinks matter) shows windows form image displayed, fiddled around in requesthandler on onbeforebrowse method , added following:
if (validateurl(request.url)) { system.diagnostics.process.start(request.url); return true; } return false;
where validateurl regex checks.
what have noticed windows form (blank windows form) still opens , image on browser (expected).
where can double check not show blank windows form, or hide it?
version: chromium 39.0.2171.95 cef: r2069, cefsharp: 39.0.2.0
regards jean
Comments
Post a Comment