JApplet:设置框架的大小
Posted
技术标签:
【中文标题】JApplet:设置框架的大小【英文标题】:JApplet: setting the size of the frame 【发布时间】:2011-05-22 15:16:28 【问题描述】:我读到这是一个棘手的问题,因为小程序在浏览器中运行。但我希望我的小程序窗口始终保持相同的大小。 (现在使用 Eclipse 我可以滑动窗口的大小。)
目前我只这样做:
public class myJApplet extends JApplet
public void init()
this.setSize(800, 480);
有没有办法添加this.setResizable(false)
?
【问题讨论】:
【参考方案1】:在 html 中设置小程序的大小。例如
<html>
<body>
<applet code="myJApplet" >
</applet>
</body>
</html>
在 AppletViewer 中加载 HTML 时,小程序仍可调整大小,但这与部署无关。
【讨论】:
以上是关于JApplet:设置框架的大小的主要内容,如果未能解决你的问题,请参考以下文章