案例-Swing使用ToolTip
精华
小牛编辑
154浏览
2023-03-14
1 如何在Swing使用ToolTip
您可以使用setToolTipText() 方法为任何JComponent创建工具提示。此方法用于为组件设置工具提示。
例如,要将工具提示添加到PasswordField,只需添加一行代码:
field.setToolTipText("Enter your Password");
2 Swing使用ToolTip的案例
package cn.xnip;
/**
* 小牛知识库网: https://www.xnip.cn
*/
import javax.swing.*;
public class ToolTipExample {
public static void main(String[] args) {
JFrame f=new JFrame("ToolTip案例-小牛知识库网");
//Creating PasswordField and label
JPasswordField value = new JPasswordField();
value.setBounds(100,100,100,30);
value.setToolTipText("Enter your Password");
JLabel l1=new JLabel("密码:");
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);
}
}
输出结果为: