带有背景图像的自定义JTextArea
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有背景图像的自定义JTextArea相关的知识,希望对你有一定的参考价值。
This is a sample JTextArea with a custom background image.
import java.awt.Dimension; import java.awt.Font; import java.awt.Graphics; import java.awt.Image; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JTextArea; private static final long serialVersionUID = 7502204181430286959L; panel.add( new CustomTextArea() ); frame.setContentPane( panel ); frame.pack(); frame.setVisible( true ); } public CustomTextArea() { super(); init(); } } public void init() { ta.setFont( f ); ta.setLineWrap( true ); ta.setWrapStyleWord( true ); ta.setPreferredSize(getPreferredSize()); ta.setOpaque( false ); add( ta ); } super.paintComponent( g ); g.drawImage(image, 0, 0, null); } }
以上是关于带有背景图像的自定义JTextArea的主要内容,如果未能解决你的问题,请参考以下文章
如何在谷歌地图中创建一个带有气泡聊天背景的自定义标记,以及像调情地图这样的图像右上角的数字?
带有用于突出显示的图像的自定义 UITableViewCell