L'éditeur ci-dessous vous proposera deux méthodes pour centrer un formulaire Java (explication avec exemples). L'éditeur le trouve plutôt bon, je vais donc le partager avec vous maintenant et le donner comme référence pour tout le monde. Suivons l'éditeur et jetons un coup d'oeil
La 1ère méthode :
//setSize(300, 200); pack(); // 得到显示器屏幕的宽、高 int width = Toolkit.getDefaultToolkit().getScreenSize().width; int height = Toolkit.getDefaultToolkit().getScreenSize().height; // 得到窗体的宽、高 int windowsWidth = this.getWidth(); int windowsHeight = this.getHeight(); //System.out.println(windowsWidth+","+windowsHeight); this.setBounds((width - windowsWidth) / 2,(height - windowsHeight) / 2, windowsWidth, windowsHeight);
La 2ème méthode :
setLocationRelativeTo(null);
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!