Solución:
Considere dejar el título justificado a la izquierda … pero … esto lo acercará al centro. Para marcos de tamaño variable, debe volver a escribir el título al cambiar el tamaño.
JFrame t = new JFrame();
t.setSize(600,300);
t.setFont(new Font("System", Font.PLAIN, 14));
Font f = t.getFont();
FontMetrics fm = t.getFontMetrics(f);
int x = fm.stringWidth("Hello Center");
int y = fm.stringWidth(" ");
int z = t.getWidth()/2 - (x/2);
int w = z/y;
String pad ="";
//for (int i=0; i!=w; i++) pad +=" ";
pad = String.format("%"+w+"s", pad);
t.setTitle(pad+"Hello Center");
Adaptando la fuente de la respuesta de @ Java42, hice una “solución” para ajustar el título al cambiar el tamaño de JFrame:
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import javax.swing.JFrame;
public class JFrameTitleCenter {
public void createAndShowGUI() {
JFrame frame = new JFrame();
frame.setPreferredSize(new Dimension(300, 200));
frame.setTitle("Hello Center");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
titleAlign(frame);
}
});
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
private void titleAlign(JFrame frame) {
Font font = frame.getFont();
String currentTitle = frame.getTitle().trim();
FontMetrics fm = frame.getFontMetrics(font);
int frameWidth = frame.getWidth();
int titleWidth = fm.stringWidth(currentTitle);
int spaceWidth = fm.stringWidth(" ");
int centerPos = (frameWidth / 2) - (titleWidth / 2);
int spaceCount = centerPos / spaceWidth;
String pad = "";
pad = String.format("%" + (spaceCount - 14) + "s", pad);
frame.setTitle(pad + currentTitle);
}
public static void main(String[] args) {
EventQueue.invokeLater(() -> {
new JFrameTitleCenter().createAndShowGUI();
});
}
}
Laboral:
I have a JFrame with a Title. I want center align the title, so that
it appears in the middle of the JFrame's title.
simple no es posible centrar la narración en el JFrames TitleBar
, este contenedor vino de Native OS
-
los trucos sucios son posibles mediante implementos
getSystemLookAndFeel
en el sistema operativo Windows -
crear sin decorar
JFrame
añadiendoJPanel
(simuladoToolbar
) con JButtons (JButtons con iconos que simulan botones estándar)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)