digitalmars.D.announce - DFL 0.9.6 release
- "Chris Miller" <chris dprogramming.com> Aug 06 2007
DFL is an easy-to-use GUI toolkit for the D programming language. DFL 0.9.6 was released today, including the following changes: * Added ability to custom sort and re-sort ListView. * Added dfl/statusbar.d with StatusBar control. * Added property Application.userAppDataBasePath. * Added class Screen to dfl.drawing. * Control handles now recreate automatically if a property change = requires it. * Added more examples. * Updated Tango compatibility. http://www.dprogramming.com/ Download installer above. # import dfl.all; # # int main() # { # Form myForm; # Label myLabel; # # myForm =3D new Form; # myForm.text =3D "DFL Example"; # # myLabel =3D new Label; # myLabel.font =3D new Font("Verdana", 14f); # myLabel.text =3D "Hello, DFL World!"; # myLabel.location =3D Point(15, 15); # myLabel.autoSize =3D true; # myLabel.parent =3D myForm; # # Application.run(myForm); # # return 0; # } dfl -gui hello.d
Aug 06 2007








"Chris Miller" <chris dprogramming.com>