我认为这是一个简单的问题,但我找不到使用正确的"关键字搜索解决方案"。
如何将我的ContentPanel崩溃/扩展从上/下更改为左/右?
非常感谢你的帮助!
我尝试了这些代码,但我没有工作。
for(int line = 1; line < file.size(); line++) // start at line 1 cause the line with the alphabet is useless.
{
if(line == 1) // Line 1 is always the states... so create the states.
{
String[] array = file.get(line).split("");
for(String str :array) // split returns a string Array. each element is is one char long
{
// we only care about the letters and not the '{' or the ','
if (Character.isLetterOrDigit(str.charAt(0))) {
dfa.addState(new State(str.charAt(0)));
}
}
}
答案 0 :(得分:1)
默认情况下,ContentPanel将从上到下折叠,无法更改它。 但是如果你使用BorderLayoutData,你可以拥有北,东,西,南和中心面板。东西面板将向侧面倾斜/扩展方向。