Is it possible to assign null text for the UltraPictureBox? for example i don't have image to assign for the ultrapicturebox. In that scenario i want to display the text "No Image Attached" in the ultrapicturebox. Is it possible?
Hi,
There's no property for this. But you can do it using a CreationFilter. In fact, this is probabaly one of the simplest CreationFilters you can do.I wrote a CreationFilter that is very similar to this for the UltraWinGrid to show a message in the grid when there are no rows. Here's a link to that article.
Empty gride message - Infragistics Community
No, that control does not display text. You could, however, Create a bitmap, draw the string onto it, and assing that image to the control's Image property. Alternatively, you could hide the control when the image is not available, and display a Label control over it instead, and hide that Label control when the image is available.