• Stars
    star
    133
  • Rank 271,585 (Top 6 %)
  • Language
    C#
  • Created over 10 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

WPF AppBar helper

WPFAppBar

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

What is it?

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.

How do I use it?

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);

I found a bug!

Please add an issue, or better yet send a pull request. Thanks!

That sounds okay... but licensing?

No warranty of any kind implied.

Creative Commons CC0 (https://creativecommons.org/publicdomain/zero/1.0/)