Search code examples
c#windows-phone-8windows-phone

Windows Phone 8 Webbrowser (zoom)


I'm creating a Windows Phone 8 app, but I'm stuck at the last part... It's an app to view the calendars on school: see calendar Now I open the link of every class (I have the changes for every class, but it opens small... What can I do to solve this ? (See picture) + I can't acces the website codes.

See the picture:

enter image description here

I only want the calendar of the website and not the rest at the left side.


Solution

  • private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            webBrowser1.Document.Body.Style = "zoom:300%;";
        }
    

    assuming webBrowser1 is the name of your control