essAbubakar / open-webkit-sharp

Automatically exported from code.google.com/p/open-webkit-sharp
0 stars 0 forks source link

Making scrollbars disappear? #154

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 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 9 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