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; }
Public Property ContentImage As Image
Get
Set
member ContentImage : Image with get, set
Property Value
Type:
ImageRemarks
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