Click here to Skip to main content
15,883,841 members
Articles / Web Development / HTML
Tip/Trick

Disable WebView scrolling in Windows Store Apps

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
31 Jan 2014CPOL1 min read 17.5K   1  

Introduction

WebView is a control which enables developers to host the HTML content. In WinRT framework WebView still lacks some features when we compare it to the WebBrowser of WPF. WebView class inherits from FrameworkElement class, but many properties of base class in not working in WebView.

Background 

Recently I was creating an app and I want to disable the horizontal & vertical scrolling of WebView. I tried below given code. 

XML
<WebView x:Name="webView" Source="http://myawesomewebsite.com"<br />    ScrollViewer.VerticalScrollBarVisibility="Disabled"<br />    ScrollViewer.VerticalScrollMode="Disabled"/> 

But it didn't work. I was getting annoyed. I start binging & googling but didn't get any solution. WebView doesn't have its template also. Then I start analyzing the control in microscopic way. Finally I get to know that the scroll bars are due to HTML content, WebView itself doesn't have its own scroll bars. So I decided to go for JavaScript way. I applied some CSS properties in HTML content using JavaScript. It will display only that HTML content which is being displayed in current viewport or say display area.  

Using the code

WebView provides InvokeScript method, which executes the specified script function from the currently loaded HTML, with specific arguments. When WebView's LoadCompleted event occurs, I am invoking that JavaScript which disables the scrolling. Check out whole code given below. 

C#
string DisableScrollingJs = @"function RemoveScrolling()
                              {
                                  var styleElement = document.createElement('style');
                                  var styleText = 'body, html { overflow: hidden; }'
                                  var headElements = document.getElementsByTagName('head');
                                  styleElement.type = 'text/css';
                                  if (headElements.length == 1)
                                  {
                                      headElements[0].appendChild(styleElement);
                                  }
                                  else if (document.head)
                                  {
                                      document.head.appendChild(styleElement);
                                  }
                                  if (styleElement.styleSheet)
                                  {
                                      styleElement.styleSheet.cssText = styleText;
                                  }
                              }";
 
void webView_LoadCompleted(object sender, NavigationEventArgs e)
{
    webView.InvokeScript(&quot;eval&quot;, new[] { DisableScrollingJs });
}

I hope this article will help you while developing WebView oriented app if you required such feature to implement. 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead eInfochips (An Arrow Company)
India India
Leading a passionate team to build metadata driven generic IoT Platform using for the operating companies (OpCos) of a Fortune 500 American conglomerate manufacturer of industrial products having annual revenue over $7 billion. Willing to join product-based and SaaS companies having production workloads and serving end customers happily.

Comments and Discussions

 
-- There are no messages in this forum --