Skip to content

CodeFork/WpfAppBar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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?

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

Packages

No packages published

Languages

  • C# 100.0%