你可以使用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 = 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);
}
}
输出:
评论前必须登录!
注册