Yet another fork of DGui Form Library
The simplest way to compile is to use dub package.
$ dub build
See api.
module hello;
import dguihub;
class MainForm : Form {
public this() {
this.text = "DGui Form";
this.size = Size(500, 400);
this.startPosition = FormStartPosition.centerScreen; // Set Form Position
}
}
int main(string[] args) {
return Application.run(new MainForm()); // Start the application
}
Directly from examples directory
$ cd examples/hello
$ dub
or using subpackage
$ dub run dguihub:hello
Project | Author |
---|---|
DGui | Antonio Trogu |
DGuiT | FrankLike |
The project is licensed under the terms of the Boost Software License, Version 1.0.