Disable clicking or typing in a WebBrowser Control
c#, webbrowser-control
Solution
you can just purely disable WebBrowser controll I believe it supports enable disable function therefore you can read but you cant click or type
YouWebBrowserControllID.Enabled = false;
in other case try this
((Control)webBrowser1).Enabled = false;
Problem
I am using a WebBrowser control. I need to disable clicking or typing. How do I do this?