JavaFX 小程序大小基于节点大小

发布于 2024-11-03 20:26:06 字数 126 浏览 0 评论 0原文

当在javascript中嵌入JavaFX时,有没有办法根据JavaFX舞台的大小来确定高度和宽度?因此,如果我要更新舞台的尺寸,我也不必编辑 JavaScript。

相反,有没有办法将我的舞台尺寸绑定到用户浏览器的尺寸?

When embedding JavaFX in javascript, is there a way to base the height and width on the size of the JavaFX stage? So if I were to update the dimensions of my stage, I wouldn't have to edit the javascript as well.

Conversely, is there a way to bind the dimensions of my stage to the dimensions of the user's browser?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

笑看君怀她人 2024-11-10 20:26:06

JavaScript 选项中有一个名为 show_html。当设置为 true 时,脚本将向您显示 HTML。拥有它后,您可以对其应用 CSS 样式,并使用 HTML 而不是 JS。

In the JavaScript options is one named show_html. When setted to true, the script will show you the HTML. Once you have it, you can apply CSS styles to it and use the HTML instead of the JS.

浅黛梨妆こ 2024-11-10 20:26:06

我找到的解决方案是像这样设置小程序:

javafx(
  {
    archive: "myapp.jar",
    width: "100%",
    height: "100%",
    code: "my.app.myapp",
    id: "app"
  }
);

它可以很好地填充屏幕。

The solution I came to was to set the applet up like so:

javafx(
  {
    archive: "myapp.jar",
    width: "100%",
    height: "100%",
    code: "my.app.myapp",
    id: "app"
  }
);

which worked just fine for filling the screen.

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