个性化阅读
专注于IT技术分析

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

输出:

Java如何使用工具提示1
赞(0)
未经允许不得转载:srcmini » 如何在Java Swing中使用ToolTip

评论 抢沙发

评论前必须登录!