Subscribe For Free Updates!

We'll not spam mate! We promise.

Thursday 15 August 2013

Create a Button Named HelloButton Code in Java


Java code for creating Graphic User Interface, this code is creating a Button on JFrame

import java.awt.*;

public class SimpleButton extends java.applet.Applet {

Button helloButton = new Button("Hello World!");

public void init() {
//Add the button to the screen
add(helloButton);
}
}

Socializer Widget By CodingLovers
SOCIALIZE IT →
FOLLOW US →
SHARE IT →

0 comments:

Post a Comment