Click or drag to resize

NotificationContentImage Property

Gets or sets the content image of the notification

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public Image ContentImage { get; set; }

Property Value

Type: Image
Remarks
This is used to provide context to the user for what the notification is for. Currently does nothing on WPF and WinForms. On these platforms set-up a global Style Style.Add<NotificationHandler>("info", h => h.NotificationIcon = NotificationIcon.Info); and the use it via new Notification { Style = "info" }
See Also