如何动态更改 silverlight 应用程序的 OOB 高度/宽度?

发布于 2024-08-26 18:22:48 字数 276 浏览 3 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俏︾媚 2024-09-02 18:22:48

我用这个:

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;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文