Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Placing toolbar into Windows taskbar (ala language bar)

I'm currently in the process of writing a Windows MFC app to quickly search our corporate DMS. The idea is to have a button placed at the right hand edge of the windows taskbar much like the language bar, that when clicked, would popup the search interface.

I can't seem to find much regarding how placing items in the taskbar like this is performed, can anyone point me to some useful resources or examples?

I'd prefer native API resources (that is, not .NET) if possible.

Thanks!

like image 989
CapBBeard Avatar asked Mar 01 '23 19:03

CapBBeard


2 Answers

Such toolbar is named a Deskband. Here's an example: http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx

like image 150
jerone Avatar answered Mar 11 '23 23:03

jerone


You could look at the StExBar. It implements an explorer toolbar which can also be added to the taskbar. Doesn't use MFC though, just plain win32.

like image 28
Stefan Avatar answered Mar 12 '23 00:03

Stefan