mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
25 lines
400 B
C++
25 lines
400 B
C++
#include "TestEditInt.h"
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <TestEditInt/TestEditInt.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class TestEditInt : public WithTestEditIntLayout<TopWindow>
|
|
{
|
|
public:
|
|
typedef TestEditInt CLASSNAME;
|
|
TestEditInt();
|
|
};
|
|
|
|
|
|
TestEditInt::TestEditInt()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
// edt.OnSides();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TestEditInt().Run();
|
|
}
|