Silverlight Tip : How to set web page title.

If you have more than one page in your silverlight application it would be great if you will change a web page title when you switch between them.

To do it you can use Silverlight DOM API.

   1: var document = HtmlPage.Document;
   2: document.SetProperty("title", "My title"); // title should be in lower case.

2 Comments

Comments have been disabled for this content.