Page 1 of 1

Windows Phone WebBrowser Tutorial

Posted: Sun Apr 10, 2011 11:05 pm
by Jg99
Info: This uses C# to make a windows Phone App and u need the Windows Phone Dev tool1s
1.you add a text box, button, and a webbrowser control
Code for browser (simple)
Code: Select all
  string site = textBox1.Text;
            webBrowser1.Navigate(new Uri(site, UriKind.Absolute));
That's It
now you have a simple mobile browser for Windows Phone 7.

Re: Windows Phone WebBrowser Tutorial

Posted: Mon Apr 11, 2011 12:29 am
by Eller200
love it thankz

Re: Windows Phone WebBrowser Tutorial

Posted: Tue Apr 12, 2011 11:52 pm
by Jg99
NP, i did it cause there wasnt any tuts for windows phone here so i put a tut for the Code 'n' stuff members so they can make their own mobile brower

Re: Windows Phone WebBrowser Tutorial

Posted: Thu Jun 16, 2011 11:09 pm
by dj1437
Great tutorial but give credit to the msdn team
Update:
I will be making my browser on winmobile soon :D