作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以在应用程序运行时更改 NiftyGui 中面板的大小?我试过这段代码://初始化
mainScreen = new ScreenBuilder("main") {{
controller(sc);
layer(new LayerBuilder("foreground"){{
childLayoutCenter();
panel(new PanelBuilder("p1"){{
childLayoutAbsoluteInside();
backgroundColor("#00ff00");
width("100%");
height("100%");
padding("10px");
panel(new PanelBuilder("p4"){{
x("100%");y("100%");
height("20%");
width("20%");
backgroundColor("#0000ff");
}});
}});
}});
}}.build(nifty);
//更新()
Element f = nifty.getCurrentScreen().findElementById("p4");
f.getParent().layoutElements();
f.setHeight(f.getHeight() + 300);
一切都没有改变。
最佳答案
好的,我解决了这个问题。我用错了方法。解决方案是使用 setConstraintHeight(SizeValue)
而不是 setHeight(int)
`Element f = nifty.getCurrentScreen().findElementById("p4");
f.getParent().layoutElements();
f.setConstraintHeight(new SizeValue(f.getHeight() + 5 + "px"));`
关于java - NiftyGui - 如何改变面板的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29451451/
是否可以在应用程序运行时更改 NiftyGui 中面板的大小?我试过这段代码://初始化 mainScreen = new ScreenBuilder("main") {{ control
我有一个自定义按钮,单击时会切换图像,因此我需要处理 mouseEvent 单击。但是,它只对函数“inputEvent(NiftyInputEvent inputEvent)”上的 keyEvent
我是一名优秀的程序员,十分优秀!