Home - accessguru/mantincontrols GitHub Wiki

Project Description

This project is a compilation of three controls Enum Combobox, Toast Popups and Help Balloons.

NuGet Packages

https://www.nuget.org/packages/Mantin.Controls.Wpf.Notification

PM> Install-Package Mantin.Controls.Wpf.Notification

https://www.nuget.org/packages/Mantin.Controls.Wpf.EnumComboBox

PM> Install-Package Mantin.Controls.Wpf.EnumComboBox

This project was created as an alternative to providing feedback to the user without a message box. I choose to do so by creating "Toast" that popup on the bottom of the screen, stack and fade away.

Toast

The second control in this library is a "Help Balloon". The intent is to put next to a control and when the user hovers over, it will display some helpful text, then fade away.

The new EnumComboBox allows you to directly bind an enum.

XAML:

<enumComboBox:EnumComboBox EnumType="{x:Type demoApplication:Status}" SelectedValue="{Binding Status}" />

I've also included a simple demo application that that shows how to use the library which is available here.