JFrame « Menu « Java Swing Q&A





1. JFrame Menu get hidden    stackoverflow.com

When adding my canvas in JFrame Menu, why my menu always hide behind my canvas?

    canvas = new MyCanvas();
    canvas.setBackground(Color.lightGray);

    contain.add(canvas, ...

2. Is there any way to get a reference to the current frame in Java?    stackoverflow.com

I have a menu bar class (MenuBarGUI) that I have put in all of my other classes and I need to know if I can close the current JFrame that it ...

3. Menus and replacing the prompts fr JFrame    coderanch.com

I normally program in MS VFP (Visual FoxPro) and have for most of the last twenty years. I'm new to Java. In VFP we normally have a main menu (the programmer controls the menu via the program) and the menu prompts can be changed along with any submenus, also after selecting a menu item the selected item can be turned off ...

4. JFrame - Output and Input in Frame - menu choice and simple Calculator    java-forums.org

package menuchoice; import javax.swing.JFrame; import java.util.Scanner; public class Main { public static void main(String[] args) { frame oneframe = new frame(); oneframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); oneframe.setSize(275,180); oneframe.setVisible(true); Scanner choice = new Scanner(System.in);{ double menuselect; System.out.println("Please Enter the Number\n1. Addition\n2. Subtraction"); menuselect = choice.nextDouble(); if (menuselect == 1){ Scanner addidtion = new Scanner(System.in); double fnum, snum, answer; System.out.println("Enter first number: "); fnum = addidtion.nextDouble(); System.out.println("Enter ...