Build

Desktop Toast Notifications with C#, WPF & MVVM

5 min read Darryn Campbell on Jan 19, 2024

Have you noticed, desktop notifications have become a necessary feature in realtime, event-driven apps. Web services need to alert users of back-end signals, or messages from other users, as they happen.

If you’re a software engineer or full-stack software developer looking to build a Windows Desktop application using C# and WPF, Windows Forms, or UWP, this guide will walk you through building the front-end and back-end code for desktop push notifications with the MVVM design pattern.

The star player here is PubNub’s real-time messaging API, which allows clients or servers to fire real-time signals to any number of devices, web apps, and mobile apps, from anywhere in the world.

Overview of programming languages needed for toast notifications

For this tutorial, we'll be using a variety of languages. To start, we’ll give a brief definition of those languages:

What is WPF?

The code example that we are going to run through together is written using Windows Presentation Foundation or WPF. For the past decade, WPF has been a best-choice subsystem for developing Windows Desktop web apps with C# and the .NET Framework. It resembles Windows Forms with its employment of XAML for user interface development and C# Code Behinds for every view.

Quick Tip:

In this tutorial, we are going to keep as much code as we can outside of the Code Behind because we will be using the MVVM pattern. For this reason, code that would normally appear in the Code Behind classes will instead go in ViewModel classes.

What is MVVM Architecture?

Model-View-ViewModel or MVVM is a design pattern for separation of UI development and back-end development in a user-facing application. There are three components that make up the pattern.

What are the components of WPFApps?

For WPFapps, these components are:

  • Views – XAML and CodeBehinds

  • ViewModels – C# code for state management and controlling data that moves between Model and View.

  • Models – C# classes, Data Storage, Business logic.

C# Desktop Notifications

A Windows Desktop solution for OS aware notifications is the Toast Notification class. Toast notifications are integrated into the Windows UI Notification class. Moreover, the new Windows 10 Toast Notification APIs provide a modern and feature-rich method for displaying notifications.

Talk to an Expert

Let's connect to discuss your real-time project.

By submitting this form, you are agreeing to our Terms and Conditions and Privacy Policy.

What is a Toast notification?

For this example, we’ll be using a Toast notification. A Toast notification is a small popup that is programmed to appear and expire automatically. It is usually unobtrusive and doesn’t require any action from the user. It also won’t halt user activity.

This type of automated push notification is ideal for desktop popups. However, the support for Toast with WPF is not abundant.

Toast notification pro tip:

The workaround for this scenario is to build your own toast desktop notification user interface so the WPFapp can include notifications. A notification like this can be triggered at any time using a conventional C# event in the ViewModel code.

The example we are going to build together is a WPFapp with C# notification.

There will be one parent window with a single button. Clicking the button will trigger a PubNub publish of JSON data to the network. The application will also subscribe to PubNub using the same channel and API keys as the publish code (free PubNubAPI keys).

The PubNub subscribe code will trigger the C# event that creates the popup push notification on the Desktop, whenever a new message is published. The latency for PubNub messages is generally 80 to 100 milliseconds, regardless of publisher and subscriber distance.

PubNub has more than 50 client SDKs so any internet-capable device can be interchanged into this diagram.

WPFTutorial Notification Tutorial  Project With C# and MVVM

We are going to build our own C# notification app to demonstrate the power of PubNub messaging and a solution for WPF desktop notifications. Here is the file structure of the MVVM project:

All of the code referenced in this tutorial is available open source on GitHub.

In order to get the app running, you need to get your PubNubAPI keys.

Be sure to add your Publish and Subscribe keys to the source code

Building a desktop notification starting with MVVM

1. If you’re starting from scratch, openVisual Studio (free), and create a new WPFweb application. Click File -> New -> Project.

2. Right Click on the new project file in the Solution Explorer and click Manage NuGet Packages. We have to install PubNub to continue.

3. Create the folders in the root of the project like referenced in the screenshot from earlier. These folders are Model, View, and ViewModel. In the View folder, create 2 new XAML windows, the Main Window and the Notification Window.

Continuing the notification build with XAML

Here is the XAML for the 2 view files that you created. This will make the UI of our parent and notification windows.

MainWindow.xaml

C# notification window code example

Here is the C# Code Behind code for the notification window. All of the code is UI specific. It is meant to resemble the "Toast" notification.

Last step to building your C#, WPF, and MVVM notification 

  1. In the ViewModel folder create a PubNubVM.cs, class which will be the facilitator between the Model code and View code. The code for that file can be found here.

  2. In the Model folder, create a PubNubHelper.cs class to interact with the PubNub publish/subscribe API. Be sure to input your own free PubNubAPI keys in the PubNub initialization code.

  3. You can see the “__YOUR_PUBNUB_PUBLISH_KEY_HERE__” and “__YOUR_PUBNUB_SUBSCRIBE_KEY_HERE__” in the file. Replace those string literals with your keys.

Pro Tip: In the Model folder, you will also need the JsonMsg.cs class, which can be found here. Be sure to add any NuGet packages that are referenced in the WPF project file. There are also some JPG image files for the View folder. These images appear in the custom-made notification window. Be sure to add them to the project View folder.

4. Run the project! Click the “Trigger Notification Window” button. You will notice a custom notification appear in the lower right-hand corner of your desktop! This is powered by PubNub, so if you have this application running on multiple machines, the notification will appear on every machine, for each individual button click.

By using other PubNubSDKs and client devices, the notification system is language/device agnostic.

Getting Started with Desktop Toast Notifications

This desktop notification pattern can be modified for custom push notifications intended to improve the user experience. It can be achieved by using multiple channels, and also with Access Manager, to secure who can read/write to specific channels.

For more C# code examples, reach out to devrel@pubnub.com or check out our docs and developer resources to help speed up your app development!