动态设置浏览器高度和宽度

时间:2012-11-08 18:43:50

标签: silverlight

我有一个Silverlight 5应用程序,我们运行Out Of Browser。我想知道是否有一些方法可以在代码中动态设置Out Of Browser窗口的高度和宽度。

每个人都有不同尺寸的显示器。我不希望拥有较大显示器的人被限制在最小尺寸显示器的屏幕上。

我要么基于用户ID,要么可能检测显示器尺寸。

1 个答案:

答案 0 :(得分:0)

这可能有所帮助,

private void Application_Startup(object sender, StartupEventArgs e) { MyForm = new MyForm();

this.RootVisual = startupWindow;

this.MainWindow.Width = startupWindow.Width; this.MainWindow.Height = startupWindow.Height; }