У нас вы можете посмотреть бесплатно C++ GUI with Qt 5 [or Qt 6] | Create Notes app - Part 2: Code the basics или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is the second part the Introduction to GUI programming with C++ and Qt 5 or Qt 6 video series. In this video we will code the basic functionality of the Notes application. In case you want your code to support both Qt 6 and Qt 5 you can use QT_VERSION_MAJOR macro to fix the warnings Qt6 is giving about setting the Qt::AA_UseHighDpiPixmaps and Qt::AA_EnableHighDpiScaling attributes and still set the attributes if you link with Qt5 you can use the following code: #if QT_VERSION_MAJOR == 5 QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true); QApplication::setAttribute(Qt::AA_EnableHighDpiScaling, true); #endif C++ reference website: https://en.cppreference.com Next video: Part 3 link: • C++ GUI with Qt 5 [or Qt 6] | Create Notes... Full series playlist: • Introduction to graphical user interface p...