0

我有一个 Silverlight 5 应用程序,我们用完了浏览器。我想知道是否有某种方法可以在代码中动态设置浏览器窗口外的高度和宽度。

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

我会根据用户 ID 或如果可能的话检测显示器尺寸。

4

1 回答 1

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; }
于 2012-11-08T18:47:51.080 回答