tip2tail / t2tWinFormAppBarLib

Helper library for creating AppBars (forms which are docked to the side of the screen). AppBars reserve the required space, similar to the Taskbar in Windows.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

t2tWinFormAppBarLib

Helper library for creating AppBars (forms which are docked to the side of the screen) in .NET WinForms. AppBars reserve the required space, similar to the Taskbar in Windows.

Available via Nuget : https://www.nuget.org/packages/tip2tail.WinFormAppBarLib/

Based on:

What is it?

A helper for turning a WinForms window into an "AppBar" like the Windows taskbar.

How do I use it?

To use, just call this code from anywhere within a normal WinForms 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.

// Setup
AppBarHelper.AppBarMessage = "UniqueAPIMesasgeForYourApplication";

// Make the window an AppBar and dock to the right of the screen:
AppBarHelper.SetAppBar(this, AppBarEdge.Right);

// Restore the window to a normal window:
AppBarHelper.SetAppBar(this, AppBarEdge.None);

How do I prevent the bar being hidden on Win+D / Show Desktop?

By default the app bar will be hidden when a user executes the Windows Show Desktop command. This can be prevented but requires some additional code:

// Add the following in your form's constructor, before InitializeComponent()
AppBarHelper.PreventShowDesktop(this.Handle);

Important Note: A side-effect of preventing Show Desktop is that a non docked window will appear behind every other application that is running.

I found a bug!

Please add an issue, or better yet send a pull request. I can't say that I'll revisit this project in the future so any contributions are welcome. Thanks!

That sounds okay... but licensing?

No warranty of any kind implied. MIT license.

About

Helper library for creating AppBars (forms which are docked to the side of the screen). AppBars reserve the required space, similar to the Taskbar in Windows.

License:MIT License


Languages

Language:C# 100.0%