gpt4 book ai didi

java - 从复合中获取特定控件类型的所有控件

转载 作者:行者123 更新时间:2023-11-30 09:42:12 24 4
gpt4 key购买 nike

如何从 swt 页面内的单个组合获取特定控件类型(例如所有按钮)?

问候嗯……

最佳答案

您可以使用 getComponents并使用 instanceOf 关键字,如图所示 here .

Component[] components = this.getComponents();
List<Component> buttons = new ArrayList<Component>();

for (Component component : components)
{
if (component instanceof JButton)
{
buttons.add(component);
}
}

关于java - 从复合中获取特定控件类型的所有控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8759176/

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