Completed
Last Updated: 21 Jun 2018 14:07 by ADMIN
ADMIN
Dimitar
Created on: 14 Mar 2018 11:51
Category: DesktopAlert
Type: Bug Report
0
FIX. RadDesktopAlert - the content image cannot be set
To reproduce:
RadDesktopAlert oNotificacion = new RadDesktopAlert(this.components);
oNotificacion.FixedSize = new System.Drawing.Size(350, 150);
oNotificacion.CaptionText = "TITLE";
oNotificacion.ContentText = "Alert TEXT";
oNotificacion.ContentImage = this.pictureBox1.Image;

oNotificacion.Show();

Workaround:
oNotificacion.Popup.Image = this.pictureBox1.Image;
0 comments