美文网首页
Lesson8 Group容器的使用

Lesson8 Group容器的使用

作者: 大丰87 | 来源:发表于2019-05-12 01:26 被阅读0次

Group容器添加组件前,需要new一个对象

    Group group = new Group();//这里用Group容器
    group.getChildren().addAll(b1,b2,b3);

group.getChildren() 相当于获取所有组件的一个列表,用角标index来表示
group容器可以自动设置组件的尺寸

    group.setAutoSizeChildren(true);//设置自动尺寸,如果为false,则宽高为0

group.contains(0,10);//查看group容器的这个位置是否有组件
group也有监听机制,比如可以监听一些事件,比如组件增减等一些事件

相关文章

网友评论

      本文标题:Lesson8 Group容器的使用

      本文链接:https://www.haomeiwen.com/subject/igdqaqtx.html