All Projects → denpalrius → Material Message Box

denpalrius / Material Message Box

Licence: mit
A WPF Message Box implementing material design

Projects that are alternatives of or similar to Material Message Box

Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: ✭ 1,157 (+1576.81%)
Mutual labels:  material-design, material-ui, wpf
Electra
A desktop application for test account managment
Stars: ✭ 32 (-53.62%)
Mutual labels:  material-design, desktop, material-ui
Shards Dashboard
🔥A beautiful Bootstrap 4 admin dashboard templates pack.
Stars: ✭ 1,143 (+1556.52%)
Mutual labels:  material-design, material-ui
Download Manager
Download Manager with features like in IDM
Stars: ✭ 36 (-47.83%)
Mutual labels:  desktop, wpf
Expenses
💰Expense tracker using Google Sheets 📉 as a storage written in React
Stars: ✭ 1,105 (+1501.45%)
Mutual labels:  material-design, material-ui
Elephant
Elephant is PHPHub Community Android unofficial client, base on Material Design + MVP+RxJava+Retrofit .
Stars: ✭ 949 (+1275.36%)
Mutual labels:  material-design, material-ui
Modernwpfcommunitytoolkit
The ModernWpf Community Toolkit is a collection of helper functions and custom controls for the ModernWpf library.
Stars: ✭ 35 (-49.28%)
Mutual labels:  desktop, wpf
Ct Vue Material Dashboard Pro
Vue Material Dashboard Pro - Material Design Admin
Stars: ✭ 58 (-15.94%)
Mutual labels:  material-design, material-ui
Wi Pwn
ESP8266 Deauther ​with a material design WebUI 📶
Stars: ✭ 839 (+1115.94%)
Mutual labels:  material-design, material-ui
Moviefinderusingmvvm Android
🔥 MVVM + Clean Architecture + Best Practices | 🍿Movie Finder is a sample Android application 📱to search movies using OMDb API which is built to demonstrate use of Modern Android development tools - (Kotlin, Coroutines, Kodein, Architecture Components, MVVM, Retrofit, Gson, Material Components) 😊😊😉
Stars: ✭ 66 (-4.35%)
Mutual labels:  material-design, material-ui
Boa
React components that implement Google's Material Design.
Stars: ✭ 61 (-11.59%)
Mutual labels:  material-design, material-ui
Android Material Design In Practice
A project to demonstrate the latest material design principles with simple examples. It has additional examples on how to easily scale texts on different screen sizes without extra effort.
Stars: ✭ 67 (-2.9%)
Mutual labels:  material-design, material-ui
React Saas Template
🌊 Template for building an SaaS / admin website using React + Material-UI
Stars: ✭ 942 (+1265.22%)
Mutual labels:  material-design, material-ui
Nightking
🌃 Google I/O 19 Extended, Dark Theme Demo
Stars: ✭ 20 (-71.01%)
Mutual labels:  material-design, material-ui
Verticalstepperform
Vertical Stepper Form Library for Android. It follows Google Material Design guidelines.
Stars: ✭ 868 (+1157.97%)
Mutual labels:  material-design, material-ui
Material Ui Password Field
A password field using Material-UI.
Stars: ✭ 54 (-21.74%)
Mutual labels:  material-design, material-ui
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+1034.78%)
Mutual labels:  material-design, material-ui
React Material Calendar
React component inspired by google calendar app.
Stars: ✭ 25 (-63.77%)
Mutual labels:  material-design, material-ui
Flutter gank
Flutter版 干货集中营
Stars: ✭ 60 (-13.04%)
Mutual labels:  material-design, material-ui
Materialwinforms
Materialized Windows Forms Controls
Stars: ✭ 61 (-11.59%)
Mutual labels:  material-design, material-ui

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

Showing an error message

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

Error Message

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

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

❇️ 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.

❤️

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].