/
dinruspro
/
reference
Обзор
Документация
Войти
/
dinruspro
/
reference
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
ArrayCtrlSpanWideCells/main.cpp
21 строка
405 B
EnergonV
Справка по коду перекочевала в репозиторий (наконец-то!)
09 янв 2024, 19:20
09 янв 2024, 19:20
e333663
Код
Авторство
О чём код?
#include <CtrlLib/CtrlLib.h> using namespace Upp; GUI_APP_MAIN { ArrayCtrl a; a.AddColumn("A", 100); a.AddColumn("B", 100); a.HeaderObject().Absolute(); a.SpanWideCells(); a.Add("This is very very long line..."); a.Add("This is long line, but the next column is not empty", 12); a.Add("Short line"); TopWindow win; win.Sizeable(); win.Add(a.SizePos()); win.Run(); }