Completed
Last Updated: 06 Feb 2018 07:16 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 02 Feb 2018 11:19
Category: DesktopAlert
Type: Bug Report
1
FIX. RadDesktopAlert - size is not adjusted when you change the ContextText while the alert is shown
To reproduce: 
- run the attached sample project
- click the 'show' button
- click the 'update text' button while the alert is shown. You will notice that the text is updated but the alert is now resized according to the new content.

Workaround: hide the alert and show it again in order to force recalculating the size. 

        Me.RadDesktopAlert1.PopupAnimation = False
        Me.RadDesktopAlert1.Hide()
        Me.RadDesktopAlert1.ContentText = Me.RadDesktopAlert1.ContentText & "Donec ornare, elit a lobortis luctus, mauris est interdum leo, eget malesuada ligula diam quis nunc."
        Me.RadDesktopAlert1.Show()
        Me.RadDesktopAlert1.PopupAnimation = True
0 comments