mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-19 22:04:01 -06:00
19 lines
306 B
C++
19 lines
306 B
C++
#include "WithEnterActionTest.h"
|
|
|
|
void WithEnterActionTest::Change()
|
|
{
|
|
edrd <<= ~ed;
|
|
}
|
|
|
|
WithEnterActionTest::WithEnterActionTest()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
Add(ed.HSizePos(10,10).TopPos(10,20));
|
|
ed <<= THISBACK(Change);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
WithEnterActionTest().Run();
|
|
}
|
|
|