August 07, 2007 DFL 0.9.6 release | ||||
---|---|---|---|---|
| ||||
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 = new Form; # myForm.text = "DFL Example"; # # myLabel = new Label; # myLabel.font = new Font("Verdana", 14f); # myLabel.text = "Hello, DFL World!"; # myLabel.location = Point(15, 15); # myLabel.autoSize = true; # myLabel.parent = myForm; # # Application.run(myForm); # # return 0; # } dfl -gui hello.d |
Copyright © 1999-2021 by the D Language Foundation