lyrachord / dguihub

D Win32 Graphic Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DGui Graphic Library

Dub version Dub downloads

Yet another fork of DGui Form Library

Compiling DGuiHub

The simplest way to compile is to use dub package.

$ dub build

Simple example

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
}

Compiling examples

Directly from examples directory

$ cd examples/hello
$ dub

or using subpackage

$ dub run dguihub:hello

Related Projects

Project Author
DGui Antonio Trogu
DGuiT FrankLike

License

The project is licensed under the terms of the Boost Software License, Version 1.0.

About

D Win32 Graphic Library


Languages

Language:D 99.9%Language:Shell 0.1%