├── .gitignore ├── DuilibFormwork ├── Debug │ ├── DuilibFormwork.exe │ └── MainWnd.xml ├── DuilibFormwork.sln └── DuilibFormwork │ ├── CMainWnd.cpp │ ├── CMainWnd.h │ ├── Duilib │ ├── Control │ │ ├── UIActiveX.h │ │ ├── UIButton.h │ │ ├── UICheckBox.h │ │ ├── UICombo.h │ │ ├── UIDateTime.h │ │ ├── UIEdit.h │ │ ├── UIFlash.h │ │ ├── UIGifAnim.h │ │ ├── UILabel.h │ │ ├── UIList.h │ │ ├── UIOption.h │ │ ├── UIProgress.h │ │ ├── UIRichEdit.h │ │ ├── UIScrollBar.h │ │ ├── UISlider.h │ │ ├── UIText.h │ │ ├── UITreeView.h │ │ └── UIWebBrowser.h │ ├── Core │ │ ├── UIBase.h │ │ ├── UIContainer.h │ │ ├── UIControl.h │ │ ├── UIDefine.h │ │ ├── UIDlgBuilder.h │ │ ├── UIManager.h │ │ ├── UIMarkup.h │ │ └── UIRender.h │ ├── Layout │ │ ├── UIChildLayout.h │ │ ├── UIHorizontalLayout.h │ │ ├── UITabLayout.h │ │ ├── UITileLayout.h │ │ └── UIVerticalLayout.h │ ├── StdAfx.h │ ├── UIlib.h │ ├── Utils │ │ ├── FlashEventHandler.h │ │ ├── UIDelegate.h │ │ ├── Utils.h │ │ ├── WebBrowserEventHandler.h │ │ ├── WinImplBase.h │ │ ├── WndShadow.h │ │ ├── downloadmgr.h │ │ └── stb_image.h │ ├── dll │ │ ├── DuiLib.dll │ │ ├── DuiLib_d.dll │ │ ├── DuiLib_u.dll │ │ └── DuiLib_ud.dll │ └── lib │ │ ├── DuiLib.lib │ │ ├── DuiLib_Static.lib │ │ ├── DuiLib_Static_d.lib │ │ ├── DuiLib_Static_u.lib │ │ ├── DuiLib_Static_ud.lib │ │ ├── DuiLib_d.lib │ │ ├── DuiLib_u.lib │ │ └── DuiLib_ud.lib │ ├── DuilibBase.h │ ├── DuilibFormwork.vcxproj │ ├── DuilibFormwork.vcxproj.filters │ ├── DuilibFormwork.vcxproj.user │ ├── main.cpp │ └── 配置环境.txt ├── DuilibMinDemo ├── Debug │ ├── DuiLib_ud.dll │ ├── DuilibMinDemo.exe │ ├── DuilibMinDemo.ilk │ ├── DuilibMinDemo.pdb │ └── duilib.xml ├── DuilibMinDemo.sln └── DuilibMinDemo │ ├── Debug │ ├── DuilibMinDemo.exe.recipe │ ├── DuilibMinDemo.log │ ├── DuilibMinDemo.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── DuilibMinDemo.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── vc142.idb │ └── vc142.pdb │ ├── DuiLib.dll │ ├── DuiLib_d.dll │ ├── DuiLib_u.dll │ ├── DuiLib_ud.dll │ ├── DuilibMinDemo.vcxproj │ ├── DuilibMinDemo.vcxproj.filters │ ├── DuilibMinDemo.vcxproj.user │ └── main.cpp ├── DuilibMinDemoStatic ├── Debug │ ├── DuilibMinDemoStatic.exe │ └── duilib.xml ├── DuilibMinDemoStatic.sln └── DuilibMinDemoStatic │ ├── DuiLib_Static_ud.lib │ ├── DuilibMinDemoStatic.vcxproj │ ├── DuilibMinDemoStatic.vcxproj.filters │ ├── DuilibMinDemoStatic.vcxproj.user │ └── main.cpp ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | !*.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | !*.lib 28 | 29 | # Executables 30 | !*.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /DuilibFormwork/Debug/DuilibFormwork.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KongKong20/DuilibTutor/2c3fc7b10ee316db8a0e7921dcbb7e4197965882/DuilibFormwork/Debug/DuilibFormwork.exe -------------------------------------------------------------------------------- /DuilibFormwork/Debug/MainWnd.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |