Package ourtunes.about

Examples of ourtunes.about.AboutFrame$HelpPanel


      {
        Point p = OurTunesFrame.this.getLocation();
        if (p.x >= 600 || p.x<0) p.x = 400;
        if (p.y >= 800 || p.y<0) p.y = 400;
       
        JFrame f = new AboutFrame();
        f.setLocation(p.x, p.y);
        f.setVisible(true);
      }
    });
    view.addActionListener(new ActionListener()
    {
      public void actionPerformed(ActionEvent event)
View Full Code Here

TOP

Related Classes of ourtunes.about.AboutFrame$HelpPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.