/
dinruspro
/
tutorial
Обзор
Документация
Войти
/
dinruspro
/
tutorial
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
Gui20b/main.cpp
18 строк
285 B
EnergonV
Уроки теперь тоже здесь!
09 янв 2024, 19:25
09 янв 2024, 19:25
4b3ebd6
Код
Авторство
О чём код?
#include <CtrlLib/CtrlLib.h> using namespace Upp; struct MyAppWindow : TopWindow { Button exit; MyAppWindow() { SetRect(0, 0, Zx(100), Zy(100)); Add(exit.SetLabel("exit").LeftPosZ(10, 64).TopPosZ(10, 24)); exit << Breaker(999); } }; GUI_APP_MAIN { MyAppWindow().Run(); }