Пример #1
0
  /** @param args the command line arguments */
  public static void main1(String[] args) {
    MyFrame myframe = new MyFrame();
    P1 p1 = new P1();
    P2 p2 = new P2();

    JButton firstBtn = new JButton("First Button");
    JButton secondBtn = new JButton("Second Button");
    JButton thirdBtn = new JButton("Third Button");
    JButton fourthBtn = new JButton("Fourth Button");

    // p1.add(firstBtn);
    // p1.add(secondBtn);

    // p2.add(thirdBtn);
    // p2.add(fourthBtn);

    myframe.add(p1);
    myframe.add(p2);

    // myframe.add(firstBtn);
    // myframe.add(secondBtn);
    myframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myframe.setVisible(true);
  }
Пример #2
0
 public static void main(String[] args) {
   lm = InitialisationAppli.initialisationEntree();
   MyFrame frame = new MyFrame();
   frame.setBackground(Color.BLUE);
   frame.setVisible(true);
 }