如何在Java Swing中使用ToolTip

你可以使用setToolTipText()方法为任何JComponent创建工具提示。此方法用于为组件设置工具提示。
例如, 要将工具提示添加到PasswordField, 只需添加一行代码:

field.setToolTipText("Enter your Password");

简单的工具提示示例
import javax.swing.*; public class ToolTipExample { public static void main(String[] args) { JFrame f=new JFrame("Password Field Example"); //Creating PasswordField and label JPasswordField value = http://www.srcmini.com/new JPasswordField(); value.setBounds(100, 100, 100, 30); value.setToolTipText("Enter your Password"); JLabel l1=new JLabel("Password:"); l1.setBounds(20, 100, 80, 30); //Adding components to frame f.add(value); f.add(l1); f.setSize(300, 300); f.setLayout(null); f.setVisible(true); } }

【如何在Java Swing中使用ToolTip】输出:
如何在Java Swing中使用ToolTip

文章图片

    推荐阅读