ultimatepp/uppdev/DropTest/main.cpp
cxl 4a1c627474 Adding uppdev....
git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-08-15 08:36:24 +00:00

17 lines
331 B
C++

#include "DropTest.h"
DropTest::DropTest()
{
CtrlLayout(*this, "Window title");
edit <<= "DropList as frame test package.";
drop.Add(0, "Item 1").Add(1, "Item 2").Add(2, "Item 3").Add(3, "Item 4") <<= 2;
edit.AddFrame(drop.Height(16));
// drop.SetFrame(BlackFrame());
}
GUI_APP_MAIN
{
DropTest().Run();
}