ultimatepp/upptst/Switch/main.cpp
cxl 8f351664e6 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@15754 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-02-10 17:43:23 +00:00

15 lines
218 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
TopWindow win;
Switch sw;
sw.Add("one");
sw.Add("two");
sw.Add("three");
sw.DisableCase(1);
win.Add(sw.SizePos());
win.Run();
}