Menu

Hezze Framework GUI / Blog: Recent posts

Create a simple window

import container.HezzeContainer;

public class Windows extends HezzeContainer{

public Windows() {
    super(true);
}


public static void main(String [] args ){
    Windows w = new Windows();
    w.setControl();
    w.setVisible(true);
}

}

Posted by Santiago 2012-12-12 | Edit
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.