'Declaration Public Overridable Property BackgroundImage As Picture
'Usage Dim instance As ElementWindowless Dim value As Picture instance.BackgroundImage = value value = instance.BackgroundImage
public virtual Picture BackgroundImage {get; set;}
'Declaration Public Overridable Property BackgroundImage As Picture
'Usage Dim instance As ElementWindowless Dim value As Picture instance.BackgroundImage = value value = instance.BackgroundImage
public virtual Picture BackgroundImage {get; set;}
Elements can display pictures in layers. The first layer consists of a foreground picture, next comes the content of the element, such as text and a picture, then comes the background picture, and finally, the background of the element, which displays the background color.
Set this property to specify the background picture layer. This property is available at run time only.
Set the ForegroundImage property to specify the foreground picture layer. Set the Picture property to specify the picture in the content layer.
Set other features for the background picture using the following Picture class properties:
If the application changes the background picture, the BackgroundImageChanged event occurs.
control.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp")); control.MarginTop = 3; control.MarginBottom = 3;
control.BackgroundImage = New FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp")) control.MarginTop = 3 control.MarginBottom = 3