BohemianBuddha

tool

UWI Shortcutbar

version1.0
languageC# / .NET (WinForms)
updated2026-08-06
downloadget it →

UWI Shortcutbar in action

The Shortcutbar is a thin strip that floats above your other windows and holds the handful of things you actually reach for — apps, documents, network paths, whatever. Drag a shortcut onto it, and it's one double-click away from then on. No menus to dig through, no desktop to hunt across.

Why it exists

A shared shop-floor machine gets used by a lot of hands, and everyone needs the same short list of destinations. The Shortcutbar puts those in one predictable place that stays put. It's deliberately small: it does one job and stays out of the way until you need it.

What it does

Under the hood

A couple of details worth calling out for anyone who likes to look inside.

Windows hands most apps a small, flat icon. The Shortcutbar goes through the shell's image factory instead, so you get the crisp 32-bit icon with its alpha channel intact:

// SIIGBF_ICONONLY | SIIGBF_BIGGERSIZEOK
hr = factory.GetImage(sz, 0x4 | 0x1, out hBitmap);

And it stays a single instance using a named mutex — a second launch simply asks the first to show itself, then bows out:

if (!createdNew)
{
    NativeMethods.PostMessage(NativeMethods.HWND_BROADCAST,
        WM_SHOWFIRSTINSTANCE, IntPtr.Zero, IntPtr.Zero);
    return;
}

Get it

Built for Windows, no installer — drop the executable and run. (Download link coming soon.)

← back to tools