gpt4 book ai didi

java - 修改 SeaGlass JComponents

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:49:39 24 4
gpt4 key购买 nike

我正在尝试创建 JTextField 的一个变体,使它看起来更像一个“搜索”字段,我在 SeaGlass 网站上看到过这个,但在实现它时遇到了麻烦......外观和感觉本身完美无缺,但我无法访问 JTextField.variant 方法...我正在通过以下类对其进行测试:

public class Stuff extends JFrame {

JTextArea text;
JTextField field;

public Stuff() {
text = new JTextArea("something");
text.setEditable(false);
field = new JTextField(20).variant("search");
setLayout(new FlowLayout());
add(text);
add(field);
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(600, 300);
}
}

并在这个类中调用它:

public class SeaGlassTest {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
UIManager.setLookAndFeel("com.seaglasslookandfeel.SeaGlassLookAndFeel");
new Stuff();
} catch (Exception e) {
e.printStackTrace();
}
}
}

最佳答案

修复了!为了将来引用,您需要的代码是:

field.putClientProperty("JTextField.variant", "search");

关于java - 修改 SeaGlass JComponents,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21049945/

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