How to change the Silverlight browser title

In the page load completion event:

var document = HtmlPage.Document;
string title="标题";
document.SetProperty("title", title);

Reproduced in: https: //www.cnblogs.com/OnlyVersion/archive/2012/11/01/2749435.html

Guess you like

Origin blog.csdn.net/weixin_34248023/article/details/93605633