0
Does anyone knows Java Eclipse? On how to make GUI connected to class where ur codes in GUI will be in class which u gonna call
6 Respuestas
+ 1
I think you want to use the JFrame class.
+ 1
Public class myClass{
Public static void main(String[] args) {
JFrame jf= new JFrame();
/* jf.otherProperties = value; */
JButton J = new JButton()
jf.add(j);
jf.isVisible(true );
}
}
0
yes JFrames and class...both
0
like GUI and main class...i wish i could email the codes...i really need help