mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
17 lines
331 B
C++
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();
|
|
}
|