ultimatepp/upptst/FileSelDropList/main.cpp
cxl b3de2dedc3 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@11821 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-03-05 13:24:06 +00:00

15 lines
198 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
FileSel fs;
fs.Types("*.*");
DropList dl;
dl.Add("TEST");
fs.FileCtrl(dl, Zx(100));
fs.ExecuteSaveAs();
}