8:48
C++ GUI Programming For Beginners | Episode 1 - Installing wxWidgets
Learn how to program cross platform graphical user interfaces in C++ using wxWidgets. IMPORTANT! The wxWidgets solution file ...
2:54
Top 3 GUI Libraries for C++ Developers in 2025 (Qt vs ImGui vs wxWidgets) | WHITEPOINT
Top 3 GUI Libraries for C++ in 2025! (Qt, Dear ImGui, wxWidgets) Are you a C++ developer looking to build desktop applications ...
44:49
Cross Platform Graphical User Interfaces in C++
In this video I challenge the notion that Graphical User Interfaces and C++ just simply dont mix, by installing the cross platform ...
11:09
wxWidgets: Using the Visitor Pattern for Serializing Class Hierarchies in C++
Unlock the secrets of serializing class hierarchies in C++ and wxWidgets with this tutorial. Dive into the challenges of direct ...
6:30
Easy OpenGL + wxWidgets Integration: Simplify Your Graphics
Looking to integrate OpenGL with the wxWidgets framework for C++ desktop apps? You're in luck! This tutorial will guide you ...
6:53
wxWidgets: How to Keep Your C++ Code Organized like a Pro with the Document/View Framework
Learn how to use wxDocument, wxView, wxDocManager and wxDocTemplate to create a document-based C++ desktop app in ...
17:01
wxWidgets: Layout basics for multiplatform GUI applications in C++ (sizers and splitters)
Exploring the concepts of sizers and splitters in the wxWidgets framework for basic UI layout. Code here: ...
10:38
wxWidgets: Visual Studio Code setup for C++ and cmake
In this video, I'm explaining how to set up Visual Studio Code to work with wxWidgets and CMake. Please watch my ...
5:29
Persistent App Settings in wxWidgets: The Complete Guide
Learn how to save and restore app settings in wxWidgets using wxFileConfig. This tutorial covers platform-correct config paths ...
4:01
The Fastest wxWidgets OpenGL Graphics for uBuntu 23.04
This video demonstates the wxWidgetsSpeedTests.cpp program. I tried 5 different OpenGL 3D display modes to find the fastest ...
1:05:07
wxWidgets: Custom Controls, Affine Transforms and Drawing
Creating custom controls in wxWidgets using Graphics Contexts. Code: https://github.com/lszl84/wx_drawing_tutorial 0:00 Intro ...
8:46
Master wxWidgets Memory Management: No More Crashes or Leaks (C++)
Master wxWidgets memory management in C++ GUI development. Learn the ownership rules: when the framework automatically ...
21:20
wxWidgets C++ GUI | how-to | getting started | tutorial | guide
Going over another GUI you could use with your C++ apps, wxWidgets. This main content will always be free. Consider supporting ...
14:32
wxWidgets: using std::thread for background processing
Learn how to use std::thread with wxWidgets to process stuff in the background while keeping the UI responsive.
13:52
wxWidgets: Advanced UI Layouts for Multiplatform C++ Apps with Grid Sizers
In this tutorial, you will expand your knowledge of UI Layout Mechanics in wxWidgets, by learning how to use wxGridSizer, ...
27:18
Unlock the Power of C++: Timers, Animations, and Easing Functions with wxWidgets!
Learn how to bring your user interface to life with timed animations in this step-by-step tutorial. We'll cover the basics of position ...
6:53
wxWidgets: Logging Basics (redirect logs to console, dialog, or window!)
In this tutorial, you'll learn about logs in Desktop Applications with wxWidgets in C++. Move past std::cout and enjoy the logging ...
44:59
More Cross Platform Graphical User Interfaces in C++: Custom Controls
In this video, I create a simple application to edit sprites for use with the olcConsoleGameEngine. That's irrelevant. What is ...
3:00
wxWidgets: Fix blurred controls in Windows
Fixing blurred controls in Windows by providing the correct manifest file. Sources: https://github.com/lszl84/wx_cmake_template ...
25:39
Sharing Data Between Threads (wxWidgets background processing)
How to safely share data between threads in C++ (especially for processing stuff in the background using wxWidgets).