Public Shared Sub AddNotification( _ ByVal notification As Notification _ )
public static void AddNotification( Notification notification )
Parameters
- notification
- The Notification to show.
Public Shared Sub AddNotification( _ ByVal notification As Notification _ )
public static void AddNotification( Notification notification )
{
Notification notification = new()
{
Title = FrameworkApplication.Title,
Message = "Notification 1",
ImageSource = Application.Current.Resources["ToastLicensing32"] as ImageSource
};
FrameworkApplication.AddNotification(notification);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)