swing - Is there a way to show a popup like a "cloud" when you passed your mouse over a textfield in Java? -
i'm looking way display baloon tip when mouse-over textfield in java, example guide user in way put specific data: id: 0-0000-000 or that...
is there way that, other joptionpane?
you can use jtextfield#settooltiptext(tiptext)
method that(note jtextfield extends jtextcomponent extends jcomponent).
string tooltip = "welcome"; mytextfield.settooltiptext(tooltip);
have @ javadocs detailed explanation on using tooltips.
Comments
Post a Comment