NetBeans 中的 AWT 和 Swing 组件
场景:在 NetBeans 中,您通过拖放创建 Swing
组件。通过给定的 GUI 删除并自定义一些属性。
问题:稍后,如果您在 source
中或通过右键单击组件并选择 customize code
看到这些组件的生成代码,我们可以看到属性更改是通过 AWT 实现的。为什么会这样呢?
Scenario : In NetBeans, you create Swing
components via drag & drop and customize some properties via the given GUI.
Question : Later on, If you see the generated code of these components, either in source
or by by right-clicking the component and selecting customize code
, we can see that the property changes are implemented via AWT. Why is this so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如使用顶级容器,
java.awt.Container
< /a> 是一个 AWT Componenet 容器。附录:本概述表明了接口 的普遍程度
java.beans.PropertyChangeListener
在整个 AWT 和 Swing 中使用。As mentioned in Using Top-Level Containers,
java.awt.Container
, an AWTComponenet
, is that container.Addendum: This overview suggests how pervasively the interface
java.beans.PropertyChangeListener
is used throughout AWT and Swing.