Available via Nuget : https://www.nuget.org/packages/WpfAppBar
As seen in this StackOverflow question:
How do you do AppBar docking (to screen edge, like WinAmp) in WPF?
Looking for a WinForms version: https://github.com/tip2tail/t2tWinFormAppBarLib
A helper for turning a WPF window into an "AppBar" like the Windows taskbar. I hope you're not writing any applications that need to do this, but if you are, hopefully this library will help.
To use, just call this code from anywhere within a normal WPF window (say a button click or the initialize). Note that you can not call this until AFTER the window is initialized, if the HWND hasn't been created yet (like in the constructor), an error will occur.
//Make the window an appbar:
AppBarFunctions.SetAppBar(this, ABEdge.Right);
// If you want to resize the window by its content:
AppBarFunctions.SetAppBar(this, ABEdge.Right, grid);
AppBarFunctions.SetAppBar(this, ABEdge.Right, wrapPanel);
// etc...
//Restore the window to a normal window:
AppBarFunctions.SetAppBar(this, ABEdge.None);
Please add an issue, or better yet send a pull request. Thanks!
No warranty of any kind implied.
Creative Commons CC0 (https://creativecommons.org/publicdomain/zero/1.0/)