作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
[10 次调用][3]
经过更多交互后,JDialog 最终变成 float 标题栏。调整它的大小会“重置” cicle。下面是调用此 JDialog 的 JPanel 中的代码。不知道是什么让它变小了,只是在点击这个按钮后才注意到它。
public class Mant_presentacion extends JPanel implements ActionListener{
Boton buscar_envase = new Boton(this, new ImageIcon("lupa.png"));
Mant_env envase = new Mant_env();
public final JFrame OWNER;
public Mant_presentacion(JFrame OWNER){
this.OWNER = OWNER;
setLayout(null);
setBackground(Color.WHITE);
d = new JDialog(OWNER, "Seleccionar envase", true);
buscar_envase.setBounds(500, 50, 180, 30);
buscar_envase.setText(" Examinar envases");
buscar_envase.addActionListener(this);
}
JDialog d;
@Override
public void actionPerformed(ActionEvent e) {
d.setSize(envase.getWidth(), envase.getHeight());
d.add(envase);
d.setLocationRelativeTo(null);
d.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
d.setVisible(true);
}
}
最佳答案
d.setSize(envase.getWidth(), envase.getHeight());
对话框在边界周围有装饰。如果代码将对话框 (d
) 的大小设置为内容 (envase
) 的大小,它每次都会缩小一点。
关于java - JDialog 每次获取 dispose/setVisible(true) 时都会变小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36907449/
我是一名优秀的程序员,十分优秀!