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


要素の背景画像を取得または設定します。
構文
'Declaration
 
Public Overridable Property BackgroundImage As Picture
'使用法
 
Dim instance As ElementWindowless
Dim value As Picture
 
instance.BackgroundImage = value
 
value = instance.BackgroundImage
public virtual Picture BackgroundImage {get; set;}

プロパティ値

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

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

このプロパティは、背景ピクチャレイヤを指定するときに設定します。このプロパティが使用できるのは実行時のみです。

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

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

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

アプリケーションが背景ピクチャを変更すると、BackgroundImageChangedイベントが発生します。

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
参照

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

 

 


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