Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.felix.pack;
- import java.awt.Color;
- import javax.swing.JPanel;
- public class MainPane extends JPanel {
- public MainPane(int width, int height){
- super.setSize(width,height);
- super.setBackground(Color.GREEN);
- super.setVisible(true);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment