JApplet:设置框架的大小

发布于 2024-10-07 05:24:27 字数 279 浏览 1 评论 0原文

我读到这是一个棘手的问题,因为小程序是在浏览器中运行的。但我希望我的小程序窗口始终保持相同的大小。 (现在使用 Eclipse,我可以滑动窗口的大小。)

目前我只这样做:

public class myJApplet extends JApplet{
  public void init() {
     this.setSize(800, 480);
  }
}

有没有办法添加 this.setResizable(false)

I read that this is a tricky question because an applet is run in the browser. But I would like my applet window to always maintain the same size. (Right now working with Eclipse I can slide the size of the window.)

For the moment I only do this:

public class myJApplet extends JApplet{
  public void init() {
     this.setSize(800, 480);
  }
}

Is there a way to add a this.setResizable(false)?

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

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

发布评论

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

评论(1

终难愈 2024-10-14 05:24:27

在 HTML 中设置小程序的大小。 EG

<html>
<body>
<applet code="myJApplet" width="800" height="480">
</applet>
</body>
</html>

当 HTML 加载到 AppletViewer 中时,小程序仍然可以调整大小,但这与部署无关。

Set the size of the applet in the HTML. E.G.

<html>
<body>
<applet code="myJApplet" width="800" height="480">
</applet>
</body>
</html>

The applet will still be resizable when the HTML is loaded in the AppletViewer, but that is not relevant to deployment.

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