import javax.swing.JFrame;
public class RGBstart extends JFrame {
public RGBstart()
{
add(new RGB());
setTitle("RGB");
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(300,500);
setLocationRelativeTo(null);
setVisible(true);
setResizable(false);
}
public static void main(String[] args) {
new RGBstart();
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.