📜  Java Swing-ToolTip

📅  最后修改于: 2020-10-01 03:24:38             🧑  作者: Mango

如何在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 = 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);   
}
}

输出: