Hello,
I have 2 appearance schemes based off certain conditions. I have the control configured for MultipleWindowDisplayStyle.Tiled so that I can have both windows display at the same time based off those conditions. Everything seems to work fine when the desktop alert displays showing different colors for each condition however, when i mouse over one of the windows, it changes color to the second window. How can I retain the appearance that i have set up at design time to persist at run-time during the MouseOver event?
TIA
The Appearance properties are exposed by the UltraDesktopAlert component and as such apply to all alerts shown by that component. The reason it appears to work is that you are probably setting the appearance after the first alert was shown, which means it won't be reflected on that alert until something dirties it (for example, passing the cursor over it).
Thanks for getting back to me Brian. I'm not sure I quite understand. If i have a single control and just manipulate the appearance based off multiple conditions, the control itself will pass that appearance on to the other alerts already displayed? So in order to accomplish what I'm trying to do, will I need to create a new UltraDesktopAlert instance for each condition? What would be the Infragistics best practice?
jpatton said:If i have a single control and just manipulate the appearance based off multiple conditions, the control itself will pass that appearance on to the other alerts already displayed?
i have the similar problem. I want my desktop alert show different background color base on condiftions. However my program would show the alert very frequently, and when the program load, it usually show multiple alert at the first time.
The problem is the background color not always consistence with the condition, say condition A something showing condition B background color.But i have two desktopalert controls. When the program load, two control is not stack together, one of the control would hide behind another which make it invisible to user.
Any suggestion about that?Jason