如何创建水平或垂直支柱和胶水以与 scala BoxPanel 一起使用?
在 Java 中,类 java.swing.Box 包含创建水平和垂直支柱和粘合的方法。使用 BoxLayout 时,Struts 和glue 对于空间元素很有用。
Box.createHorizontalStrut(10)
Box.createVerticalStrut(10)
Box.createHorizontalGlue()
Box.createVerticalGlue()
scala中哪里可以找到对应的方法?
In Java, the class java.swing.Box contains methods to create horizontal and vertical struts and glue. Struts and glue is usefull to space elements when using BoxLayout.
Box.createHorizontalStrut(10)
Box.createVerticalStrut(10)
Box.createHorizontalGlue()
Box.createVerticalGlue()
Where can I find the corresponding methods in scala?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 scala Swing 伴随对象中找到了方法:
I found the methods in the scala Swing companion object: