Posted By


aetbaar_444 on 10/08/10

Tagged


Statistics


Viewed 75 times
Favorited by 0 user(s)

Bildschirm Größe


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Fenster zentrieren
  2. Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
  3. this.setLocation((dim.width - this.getSize().width) / 2,
  4. (dim.height - this.getSize().height) / 2);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.