PowerTools SPREAD for Windows Forms 8.0J
ForegroundImage プロパティ (ElementWindowless)


要素の前景画像を取得または設定します。
構文
'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;}

プロパティ値

画像を含むPictureオブジェクト
解説

要素はピクチャをレイヤで表示できます。最初のレイヤは前景ピクチャから成り、次のレイヤには要素の内容(テキスト、ピクチャなど)、その次のレイヤには背景ピクチャ、最後のレイヤ(要素の背景)には背景色が表示されます。

このプロパティは、前景ピクチャ レイヤを指定するときに設定します。

このプロパティが使用できるのは実行時のみです。

背景ピクチャ レイヤを指定するには、BackgroundImage プロパティを設定します。内容レイヤのピクチャを指定するには、Picture プロパティを設定します。

前景ピクチャのその他の特性を設定するには、Picture クラスの次のプロパティを使用します。

AlignHorz
水平方向の配置を指定します。
AlignVert
垂直方向の配置を指定します。
Image
表示するピクチャを指定します。
Style
ピクチャの表示方法(縦横比を維持したままの拡大表示やタイル表示など)を指定します。
TransparencyColor
ピクチャ内のどの色を透過色にするかを指定します。

アプリケーションが前景ピクチャを変更すると、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
参照

ElementWindowless クラス
ElementWindowless メンバ
ForegroundImageChanged イベント
BackgroundImage プロパティ
Picture プロパティ
AlignHorz プロパティ
AlignVert プロパティ
Image プロパティ
Style プロパティ
TransparencyColor プロパティ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.