当前位置: 技术问答>java相关
关于"Look&Feel"的一个问题.
来源: 互联网 发布时间:2015-01-04
本文导语: 当我在Java程序中改变了主窗体的"Look&Feel"后,怎样让当前的"Look&Feel"作用于所有的组件之上(因为我打开另外一个副窗口或对话框后,它们的"Look&Feel"根本没有随着主窗体而改变). | 调用 SwingUtilities.upda...
当我在Java程序中改变了主窗体的"Look&Feel"后,怎样让当前的"Look&Feel"作用于所有的组件之上(因为我打开另外一个副窗口或对话框后,它们的"Look&Feel"根本没有随着主窗体而改变).
|
调用 SwingUtilities.updateComponentTreeUI(Frame名);
A simple minded look and feel change: ask each node in the tree to updateUI() -- that is, to initialize its UI property with the current look and feel.
A simple minded look and feel change: ask each node in the tree to updateUI() -- that is, to initialize its UI property with the current look and feel.
|
SwingUtilities.updateComponentTreeUI(Component c)
|
把代码贴出来吧
|
SwingUtilities.updateComponentTreeUI(Component c)