About
Application is the bulk of getting your program going mainly you just use the Application.run method to start your form up. Some other uses are managing when to do events and filtering messages or environmental variables.
module dfl.application;
{
public static bool doEvents(uint msDelay);
public static void exit();
public static Resources resources;
[property getter]
public static void run();
public static void run(void delegate() whileIdle);
public static void run(ApplicationContext appcon);
public static void run(ApplicationContext appcon,void delegate() whileIdle);
public static void run(Form mainForm);
public static void run(Form mainForm,void delegate() whileIdle);
}
{
public final Form mainForm;
[property getter]
public final Form mainForm;
[property setter]
}