qymspace / Material-Message-Box

A WPF Message Box implementing material design

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Material Message Box

A WPF Message Box implementing material design

Release

▶️ Download from Nuget

▶️ Install from Package manager Console

Install-Package MaterialMessageBox

❇️ Main Features

The message box has the following custom features:

✅ Material Theme design

✅ Custom styles for border window, message foreground and background, title foreground and background, border, etc

✅ Button to copy message box details to clipboard

✅ Scrollable message box content

✅ Message content is .NET UIElement which can host any content

❇️ Usage

Creating a simple message box

MaterialMessageBox.Show("Your cool message here", "The awesome message title");

![Simple Message](./MaterialMessageBoxDemo/Screenshots/Simple Message Box.png)

Showing an error message

MaterialMessageBox.ShowError(@"This is an error message");

![Error Message](./MaterialMessageBoxDemo/Screenshots/Error Message Box.png)

Capturing Message Box Results

var result = MaterialMessageBox.ShowWithCancel($"This is a simple message with a cancel button. You can listen to the return value", "Message Box Title");

![Capturing Message Box Results](./MaterialMessageBoxDemo/Screenshots/Message Box With Cancel Button.png)

Styling a message box

var msg = new CustomMaterialMessageBox
{
    TxtMessage = { Text = "Do you like white wine?", Foreground = Brushes.White },
    TxtTitle = { Text = "This is too cool", Foreground = Brushes.White },
    BtnOk = { Content = "Yes" },
    BtnCancel = { Content = "Noooo" },
    MainContentControl = { Background = Brushes.MediumVioletRed },
    TitleBackgroundPanel = { Background = Brushes.BlueViolet },

    BorderBrush = Brushes.BlueViolet
};

msg.Show();
var results = msg.Result;

![Capturing Message Box Results](./MaterialMessageBoxDemo/Screenshots/Styled Message Box.png)

❇️ Contributing to this project

If you've improved Material Message Box and think that other people would enjoy it, submit a pull request. Anyone and everyone is welcome to contribute.

❇️ Toolkits used

I have implemented these awesome toolkits while creating this control. Hands up to these guys who have made the most beautiful controls for WPF. They have crossed the oceans on foot!


❇️ Licence

The MIT License (MIT)

Copyright (c) 2016, Bespoke Fusion

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

❤️

About

A WPF Message Box implementing material design

License:MIT License


Languages

Language:C# 100.0%