A simple, small calculator placed discreetly near the Windows Taskbar or anywhere on the screen
0

Configure Feed

Select the types of activity you want to include in your feed.

Change title

authored by

Marco Maroni and committed by
Tangled
(Jul 15, 2026, 1:16 PM +0300) edb3dabf 1dae718d

+1 -1
+1 -1
CalculatorWindow.cpp
··· 131 131 { 132 132 RECT rc = { 0, 0, 220, 48 }; 133 133 // Top-level popup, always-on-top, tool window (no taskbar/Alt-Tab button). 134 - HWND hwnd = __super::Create(NULL, rc, L"Calculator", 134 + HWND hwnd = __super::Create(NULL, rc, L"Taskbar Calculator", 135 135 WS_POPUP | WS_CAPTION | WS_SYSMENU, 136 136 WS_EX_TOPMOST | WS_EX_TOOLWINDOW); 137 137 if (!hwnd) return FALSE;