InterviewSolution
Saved Bookmarks
| 1. |
How Can Be A Silverlight Application Shown In Full-screen Mode? |
|
Answer» You can SHOW the SILVERLIGHT application in full-screen mode by USING the following COMMAND: Application.Current.Host.Content.IsFullScreen = true; You can show the silverlight application in full-screen mode by using the following command: Application.Current.Host.Content.IsFullScreen = true; |
|