gpt4 book ai didi

Java的Swing似乎正在改变Card Layout的布局

转载 作者:行者123 更新时间:2023-12-02 08:32:55 25 4
gpt4 key购买 nike

我在使用 JPanels 和 CardLayout 时遇到一些非常奇怪的症状。本质上,我有充当“页面”的卡片,因为我只能在网格上容纳 12 个单元格,并且我将每个页面显示为卡片,然后单击 -> 和 <- 按钮相应地更改页面(或者这就是想法)。因为这些数据代表了一个不断变化的模型,所以每五秒我就会添加新的卡片来显示更新的信息,并简单地删除旧的页面。

本质上,我在程序启动时构建初始页面:

public OrderSimPanel() {
super( new CardLayout() );

// Create the map
frames = new TreeMap<Integer, String>();

// Update and draw
refreshRelevantOrders();
drawPanel();

// Set a timer for future updating
java.util.Timer timer = new java.util.Timer();
timer.schedule(new UpdateTask(), 5000);

System.out.println("Constructor DOES get called");
System.out.println("Panel type is " + this.getLayout().getClass().getName() );
}

其中refershReleventOrders()只是更新一个List,而drawPanel()是这样的:

private void drawPanel() {
System.out.println("Panel type is " + this.getLayout().getClass().getName() );

// Set all old frames to deprecated
for( Integer k : frames.keySet() ) {
String o = frames.get( k );
frames.remove(k);
k = -k;
frames.put(k, o);
}

// Frame to add to
JPanel frame = new JPanel( new GridLayout(3,4) );
int f = 0;

// Create new cells in groups of 12
for( int i = 0; i < orders.size(); i++ ) {
// Pagination powers activate!
int c = i % 12;
f = i / 12;

// Create a new panel if we've run out of room on this one
if ( c == 0 && i > 0 ) {
// Add old frame
String id = new Double( Math.random() ).toString();
frames.put(f, id);
add( frame, id );

// Create new one
frame = new JPanel( new GridLayout(3,4) );
}

// Add the order cell to the panel
frame.add(new OrderCellPanel( orders.get(i) ));

i++;
}

// Add last frame
String id = new Double( Math.random() ).toString();
frames.put(f, id);
add( frame, id );

// Set active frame to 0'th frame
((CardLayout)(this.getLayout())).show(this, frames.get(0));

// Erase other frames and from map
for( Integer k : frames.keySet() ) {
if( k < 0 ) {
this.remove(0);
frames.remove(k);
}
}
}

构造函数中创建的计时器任务调用refreshRelevantOrders() 和drawPanel()。初始打印输出如下所示:

Panel type is java.awt.CardLayout
Constructor DOES get called
Panel type is java.awt.CardLayout

但是当计时器执行时,会显示:

Panel type is javax.swing.GroupLayout

当然,drawPanel() 中的转换代码会失败。感谢您的任何想法!

最佳答案

重写 setLayout() 方法,并在那里打印旧的/新的布局类名称(在调用 super 实现之前或之后)。这样您就可以看到代码的哪一部分在面板上设置了 GroupLayout。

关于Java的Swing似乎正在改变Card Layout的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2800799/

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