2

How to create a windows toolbar-dockable application - like Winamp Desk Band - in .NET?

rafek
  • 5,464
  • 13
  • 58
  • 72

3 Answers3

1

As a commercial alternative, see the ready-to-use ShellAppBar component which supports all cases and secnarios such as taskbar docked to left,right,top,bottom edge, support for multiple monitors, drag-docking, autohide , etc etc.

logicnp
  • 5,796
  • 1
  • 28
  • 32
1

It sounds like you want to create an AppBar.

I suggest you first check out the AppBar implementation included with the Genghis package. I couldn't say if it's any good since I never used it, but it looks promising.

Manually, you would have to use a few Win32 API calls to reserve/free the screen space and achieve the effect you're looking for, as detailed in this article.

Good luck!

Tiberiu Ana
  • 3,663
  • 1
  • 24
  • 25
1

C# does Shell, Part 3

http://www.codeproject.com/KB/shell/csdoesshell3.aspx

AppBar using C#

http://www.codeproject.com/KB/dotnet/AppBar.aspx

namenlos
  • 5,111
  • 10
  • 38
  • 38