&pureforms
We are off to a great start! This code + PureForms magic is all it takes to create the window (or "form") shown in the screenshot. The repo is already on github here if you'd like to take a peek behind the scenes: https://github.com/errorsuccessdev/PureForms
#include "PureForms.h" int WINAPI wWinMain( _In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ PWSTR args, _In_ int showCommand ) { Form* frmMain = createForm( CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, L"My Form" ); assert(frmMain != NULL); Button* btnFirst = createButton( 10, 10, 200, 30, L"Click me!" ); Button* btnSecond = createButton( 10, 50, 200, 30, L"No, click me instead!" ); bool result = showForm(frmMain, showCommand); assert(result); }```