devxlogo

Create a Label With Underlined Text

The following class will give you a label with underlined text.

     public class UnderlinedLabel extends java.awt.Label      {        public UnderlinedLabel()        {            this("");            }        public UnderlinedLabel(String text)        {            super(text);            }        public void paint(Graphics g)         {            Rectangle r;            super.paint(g);            //here's the trick            r = g.getClipBounds();            g.drawLine(0,                       r.height -this.getFontMetrics(this.getFont()).getDescent(),  this.getFontMetrics(this.getFont()).stringWidth(this.getText()),                         r.height -this.getFontMetrics(this.getFont()).getDescent()                       );        }

Now if you have a panel called p on a form or dialog, you can:

 	UnderlinedLabel ull = new UnderlinedLabel();	Rectangle r = new Rectangle(5,5,150,30);	ull.setBounds(r);	ull.setText("I'M UNDERLINED");			panel1.add(ull);

You’ll have a label showing underlined text.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Engineering Leaders Spot Weak Proposals

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.