JApplet 无法在 Safari 浏览器中正常查看。主要是按钮、标签和组合框
我用 Swing 制作了一个小程序。这在所有 Windows 浏览器中都运行良好。但是当我们在 Mac 上运行相同的小程序时。在 Safari 浏览器中,它显示标签、按钮和组合框的问题。我应该怎么做才能解决这个问题?
I made an applet using Swing. This is working fine in all Windows browsers. But when we run same applet on Mac. machine in Safari browser, it shows problems with labels, buttons and combo boxes. What should I do to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...如果外观设置为“UIManager.getCrossPlatformLookAndFeelClassName()”,Mac 会完全改变通常的外观和感觉,当然,(在绝对组件位置)所有组件的形状和大小都会出错...所以对于你的情况我可以建议的是......
因此,请手动将外观设置为 IE (Windows) 作为
代码集成示例,您可以在此处找到 外观和感觉
祝你好运
Emm... if the look and feel is set to "UIManager.getCrossPlatformLookAndFeelClassName()" the Mac is totally changes the usual look and feel and, of course, (in absolute components location) all components shapes and sizes get wrong... so the thing I can suggest in your case is...
so set look and feel manually to the IE (Windows) one as
code integration examples you can find here look and feel
Good luck