maskkid / open-webkit-sharp

Automatically exported from code.google.com/p/open-webkit-sharp
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Making scrollbars disappear? #154

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
            webKitBrowser1.HorizontalScroll.Enabled = false;
            webKitBrowser1.VerticalScroll.Enabled = false;
            webKitBrowser1.Appearance.Browser.VerticalScroll.Visible = false;

What is the expected output? What do you see instead?
No scrollbars!  I see scrollbars still, I'm confused on how to disable them...

Original issue reported on code.google.com by insolen...@gmail.com on 16 Nov 2012 at 9:21

GoogleCodeExporter commented 8 years ago
you can add the following css script to your html page before you display it 

body{
overflow-y: hidden;
overflow-x: hidden;
}

Original comment by Mhdsha...@gmail.com on 9 Dec 2012 at 12:14