FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > ElementWindowless クラス : ForegroundImage プロパティ |
'Declaration Public Overridable Property ForegroundImage As Picture
'使用法 Dim instance As ElementWindowless Dim value As Picture instance.ForegroundImage = value value = instance.ForegroundImage
public virtual Picture ForegroundImage {get; set;}
要素はピクチャをレイヤで表示できます。最初のレイヤは前景ピクチャから成り、次のレイヤには要素の内容(テキスト、ピクチャなど)、その次のレイヤには背景ピクチャ、最後のレイヤ(要素の背景)には背景色が表示されます。
このプロパティは、前景ピクチャ レイヤを指定するときに設定します。
このプロパティが使用できるのは実行時のみです。
背景ピクチャ レイヤを指定するには、BackgroundImage プロパティを設定します。内容レイヤのピクチャを指定するには、Picture プロパティを設定します。
前景ピクチャのその他の特性を設定するには、Picture クラスの次のプロパティを使用します。
アプリケーションが前景ピクチャを変更すると、ForegroundImageChanged イベントが発生します。
control.ForegroundImage = new FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp")); control.MarginTop = 3; control.MarginBottom = 3;
control.ForegroundImage = New FarPoint.Win.Picture(Image.FromFile("d:\overlay.bmp")) control.MarginTop = 3 control.MarginBottom = 3