gpt4 book ai didi

Java 输入对话框工具提示和粘贴选项?

转载 作者:行者123 更新时间:2023-12-02 07:08:00 24 4
gpt4 key购买 nike

Java 中有没有一种很好的方法来为输入对话框的文本字段设置工具提示?

例如:

String input = JOptionPane.showInputDialog("输入输入:");

此文本字段是否也可以有右键单击粘贴选项?

提前谢谢您!

最佳答案

我认为不可能通过该静态方法添加工具提示。我建议您创建自己的 JOptionPane 实例,找到 JTextField 并设置它的工具提示。

public class Main {

public static List<Component> getAllComponents(final Container c) {
Component[] comps = c.getComponents();
List<Component> compList = new ArrayList<Component>();
for (Component comp : comps) {
compList.add(comp);
if (comp instanceof Container)
compList.addAll(getAllComponents((Container) comp));
}
return compList;
}

public static void main(String[] args) {
JOptionPane optionPane = new JOptionPane();
optionPane.setMessage("What's your name?");
optionPane.setMessageType(JOptionPane.QUESTION_MESSAGE);
optionPane.setWantsInput(true);
JDialog dialog = optionPane.createDialog("Simple Question");
for (Component c : getAllComponents(dialog)) {
if (c instanceof JTextField) {
c.setToolTipText("I'm a tooltip!");
}
}
dialog.setVisible(true);
dialog.dispose();
}
}

默认情况下,右键单击并粘贴即可。

关于Java 输入对话框工具提示和粘贴选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15866673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com