0

I have a silverlight 4.0 application where I need to change the Window Title of the application after login to the application according to the User in the Out-of-Browser mode.

Is it Possible ?

I have gone through the following link

http://www.codeproject.com/Articles/68955/Silverlight-4-How-Can-I-Create-a-Customized-OOB-Wi

Thanks Chittaranjan

Chitta
  • 185
  • 2
  • 15

1 Answers1

1

I don't believe it is possible in Silverlight 4.

In Silverlight 5, it's very easy, provided you're running with elevated trust:

App.Current.MainWindow.Title = "Your new window title";

However, the MSDN documentation for the Window.Title property clearly states that this property is only supported in Silverlight 5.

Luke Woodward
  • 63,336
  • 16
  • 89
  • 104