i am trying to hide scrollbar of GeckoFx WebBrowser control,in Windows forms there is method to hide scrollbar webBrowser1.ScrollBarsEnabled = false; but in GeckoFx Webbrowser there is no property like that i am using Navigate Method geckowebbrowser.Navigate("Url");
Asked
Active
Viewed 1,952 times
1 Answers
3
This works. You can create your own ScrollBarsEnabled property if you want.
webBrowser1.Document.Body.Style.CssText = "overflow: hidden ! important;";

Sire
- 4,086
- 4
- 39
- 74