JApplet:设置框架的大小
我读到这是一个棘手的问题,因为小程序是在浏览器中运行的。但我希望我的小程序窗口始终保持相同的大小。 (现在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 HTML 中设置小程序的大小。 EG
当 HTML 加载到 AppletViewer 中时,小程序仍然可以调整大小,但这与部署无关。
Set the size of the applet in the HTML. E.G.
The applet will still be resizable when the HTML is loaded in the AppletViewer, but that is not relevant to deployment.