Sunday, 19 June 2011

[Source] Java 2D Graphics - Repaint

a. Handle screen updates

import java.awt.Graphics;
import javax.swing.JComponent;
import javax.swing.JFrame;

class MyCanvas extends JComponent {

  public void paint(Graphics g) {
    g.drawString (Long.toString(System.currentTimeMillis()), 10, 30);
    repaint(1000);
  }
}


public class SettingFont {
  public static void main(String[] a) {
    JFrame window = new JFrame();
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    window.setBounds(30, 30, 300, 300);
    window.getContentPane().add(new MyCanvas());
    window.setVisible(true);
  }
}

Screenshoot

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...