2018-06-19 06:00 AM
Hi, I'm looking for a bit of help on the use of the STemWin v1.2.0 graphics library GUIbuilder.
I've downloaded the STemWin v1.2.0 graphics library for building GUI’s on an STM32.
I’ve used the provided GUIBuilder to build a simple FRAMEWIN widget dialog and added
the file generated to visual studio (linking in the provided header files and libraries in STemWinLibrary532 ). The project builds after providing some dummy GUI_X_ and LCDSIM_ functions.Have added:
GUI_Init();
hWin = CreateFramewin();
WM_ShowWindow(hWin);while (Exit == 0)
{ GUI_Exec(); GUI_Delay(100); }and it now runs but the winframe widget and button are not displayed.
I was wondering if anyone has a sample visual studio project that demonstrates how to run a
simple GUIBuilder generated dialog. And hence I could tell how my project solution needs to be fixed.