WebBrowser - Rendering HTML in Silverlight
In previous versions of Silverlight if you needed to display some HTML in your application you would either need to use a control to convert the HTML to XAML such as our RichTextBlock control or you would render an actual HTML element over your Silverlight application.
Now in Silverlight 4 we have the new WebBrowser control. This simple but powerful control allows you to display HTML, either by providing a URL or direct HTML content.
In this simple example we define a single WebBrowser control and in C# we add some static HTML:
The NavigateToString method does the work here. To display HTML in the WebBrowser control you pass a string of HTML to this method. Alternatively you can call the Navigate method, this method simply takes a URL and displays it in your Silverlight application.
[email protected] wrote:
How to cretae the app in windoes based in asp.net or silcerlight,vb,net
ashish wrote:
This is not workig for me. webBrowser.Navigate(new Uri("http://www.vectorlight.net"));
I am using Visual Studio 2010 and Silverlight 4. The OOB is not loading anything for this ? Can anyone please help ?
Paul wrote:
FYI - WebBrowser requires the Silverlight application be run in out of browser mode
... otherwise, in-browser mode showing HTML gets more complicated: have to float the HTML over the Silverlight in windowless mode or use the HTML bridge.
Guide the car to its parking space in this fun Car Parking game.
Aim for the Trash Can and get the various items of Trash in the bin.
Fly your plane in this colorful vertical scrolling shoot-em-up. Blast the bad guys and collect any bonus's they leave behind.
Pop as many bubbles as possible in this fun and colorful bubble popping game. The levels start off easy enough but gradually get harder!
Here we have a bunch of monsters that need to be matched up. Look out for the bomb and spinning monsters that will cause special damage!
Guide your friendly Bird through the maze of pipes and other obstacles collecting the Stars in this cool arcade game inspired by the legendary Flappy Bird.
You are stranded on an Alien planet. Your goal is to build a space rocket and escape. Start by building units to create power and mine the metal patches. Build defenses to defend your base from the advancing Aliens and Zombies!
Play Pool against the computer or battle against your friends in the online mode!
Slice the fruit that is thrown up onto the screen. Slice the fruit into multiple pieces for maximum points!
[email protected] wrote:
How to cretae the app in windoes based in asp.net or silcerlight,vb,net
ashish wrote:
This is not workig for me. webBrowser.Navigate(new Uri("http://www.vectorlight.net"));
I am using Visual Studio 2010 and Silverlight 4. The OOB is not loading anything for this ? Can anyone please help ?
Paul wrote:
FYI - WebBrowser requires the Silverlight application be run in out of browser mode
... otherwise, in-browser mode showing HTML gets more complicated: have to float the HTML over the Silverlight in windowless mode or use the HTML bridge.