如何使Silverlight Out Of Browser应用程序开始最大化

时间:2012-04-20 09:24:10

标签: silverlight-4.0

是否可以使Out of Browser应用程序开始最大化?

你可以设置Left,Top,Height&配置“超出浏览器”设置时的宽度属性,但我看不到使应用程序最大化的方法。

1 个答案:

答案 0 :(得分:1)

if (Application.Current.IsRunningOutOfBrowser)
{
     Application.Current.MainWindow.WindowState = WindowState.Maximized;
     Application.Current.MainWindow.TopMost = true;
}