[サンプルコード]
■ラベルにイメージを表示する
SetImageメソッドの引数には、以下の3種類が指定可能です。
1.Imageオブジェクト
2.ImageListオブジェクト
3.画像ファイルのURL
/* Image、ImageListオブジェクトの定義 */
Image Image1 {
/*イメージのロード */
LoadImage("image01.jpg");
}
ImageList ImageList1{
/*イメージのロード */
LoadImage("image01.jpg");
LoadImage("image02.jpg");
}
/* 1.Imageオブジェクトから画像を読み込む */
ImageLabel ImageLabel1 {
X = 0;
Y = 0;
Height = 30;
Width = 100;
SetImage(^.image1);
}
/* 2.ImageListオブジェクトから、画像を指定しないで読み込む */
ImageLabel ImageLabel2 {
X = 100;
Y = 0;
Height = 30;
Width = 100;
SetImage(^.imageList1);
}
/* 2.ImageListオブジェクトから、画像を指定して読み込む */
ImageLabel ImageLabel3 {
X = 200;
Y = 0;
Height = 30;
Width = 100;
SetImage(^.imageList1.GetImage(1));
}
/* 3.URLを設定して画像を読み込む */
ImageLabel ImageLabel4 {
X = 300;
Y = 0;
Height = 30;
Width = 100;
}
if ( !$DESIGNTIME ) {
ImageLabel4.SetImage("../image/image03.jpg");
}
|