D 程式設計/D 表單庫
外觀
< D 程式設計
待完善。
DFL(D 表單庫)是一個由 Christopher E. Miller 為 D 語言設計的 Win32 視窗庫。
也許,也會有 Linux 和 xBSD 版本。
目前尚不清楚許可證。
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
- dfl.all
- dfl.application
- dfl.base
- dfl.button
- dfl.clipboard
- dfl.collections
- dfl.colordialog
- dfl.combobox
- dfl.commondialog
- dfl.control
- dfl.data
- dfl.drawing
- dfl.environment
- dfl.event
- dfl.filedialog
- dfl.folderdialog
- dfl.fontdialog
- dfl.form
- dfl.groupbox
- dfl.label
- dfl.listbox
- dfl.listview
- dfl.menu
- dfl.messagebox
- dfl.notifyicon
- dfl.panel
- dfl.picturebox
- dfl.registry
- dfl.richtextbox
- dfl.socket
- dfl.splitter
- dfl.tabcontrol
- dfl.textbox
- dfl.timer
- dfl.tooltip
- dfl.treeview
- dfl.usercontrol