Java GUI Swing Model Explanation(Java GUI Swing 模型说明)
问题描述
我已经使用 Swing 有一段时间了,但是 JFrame
s、paint()
、super
的整个模型/结构等在我脑海中都是模糊的.我需要一个清晰的解释或链接来解释整个 GUI 系统是如何组织的.
同样的事情发生在我身上.实际上,直到今天我还没有完全了解它是如何工作的.
Swing 是一个非常灵活的框架——也许太灵活了.灵活性带来了很多抽象,而抽象带来了混乱.:)
我发现以下文章值得一读.他们帮助我更好地了解 Swing 的大局.
他们很好地解释了模型和委托是如何工作的.当我看到那些 JLabel
、LabelUI
、ui.update
等时,总是让我发疯.
I've been working with Swing for a while now but the whole model/structure of JFrame
s, paint()
, super
, etc is all murky in my mind.
I need a clear explanation or link that will explain how the whole GUI system is organized.
The same happened to me. Actually to this day I don't quite get 100% how all it works.
Swing is a very flexible framework - perhaps too flexible. With flexibility comes a lot of abstraction and with abstraction comes confusion. :)
I've found the following articles worth reading. They helped me to better understand the big picture of Swing.
- A Swing Architecture Overview
The process of installing a UI delegate, which is just this image:
They explain quite well how the model and the delegate work. It always drives me mad when I see those JLabel
, LabelUI
, ui.update
, etc.
这篇关于Java GUI Swing 模型说明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java GUI Swing 模型说明
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01