Hi Friends,
i made a window with a Panel and painted a text on it.
Now i want to set a background color for the panel but it does not reflect in the window..
i am posting the code here..
Please let me know if anything is wrong with the code!!
Thanks a lot!!
CODE..!!!
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class MyPan extends JPanel
{
public void paintComponent(Graphics g)
{
g.drawString("Hello India",50,50);
}
}
class MyWin extends JFrame
{
MyWin()
{
MyPan Pan=new MyPan();
Pan.setBackground(Color.DARK_GRAY);
Container Con=getContentPane();
Con.add(Pan);
setTitle("Window With Panel");
setLocation(100,100);
setSize(300,300);
setResizable(false);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}
class WinPanel
{
public static void main(String arg[])
{
MyWin w=new MyWin();
w.setVisible(true);
}
}