如何动态更改 silverlight 应用程序的 OOB 高度/宽度?
我有一个 silverlight 应用程序,用户可以将其安装为浏览器外应用程序。
每次更改应用程序的高度和宽度时,我还必须:
- 右键单击项目
- 属性
- ,单击浏览器外设置按钮
- 更改高度和宽度手动
如何在代码中更改浏览器外应用程序的定义高度和宽度?
I have a silverlight app which can be installed as an out-of-browser app by the user.
Every time I change the height and width of the application, I have to also:
- right-click on project
- properties
- click Out-of-Browser settings button
- change the height and width manually
How can I change the defined height and width of the Out-of-Browser application in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用这个:
private void Application_Startup(object sender, StartupEventArgs e)
{
MyBlueForm = new MyBlueForm();
this.RootVisual = 启动窗口;
this.MainWindow.Width =startupWindow.Width;
this.MainWindow.Height =startupWindow.Height;
}
I use this :
private void Application_Startup(object sender, StartupEventArgs e)
{
MyBlueForm = new MyBlueForm();
this.RootVisual = startupWindow;
this.MainWindow.Width = startupWindow.Width;
this.MainWindow.Height = startupWindow.Height;
}