【Siverlight - 擴展篇】Silverlight在OOB模式下實現默認打開最大化

  在App.xaml.cs中輸入如下代碼:在OOB客戶端打開,能夠實現窗口默認最大化;

 

 

private  void Application_Startup( object sender, StartupEventArgs e)
{
            if (IsRunningOutOfBrowser)
            {
                 this.MainWindow.WindowState = WindowState.Maximized;
            }
             this.RootVisual =  new MainPage(); }
相關文章
相關標籤/搜索