[サンプルコード]
/* 画像をImageにロード */
Image Image1{
LoadImage("Image.jpg");
}
/* Imageに読み込まれた画像をSetImage */
ImageLabel ImageLabel1 {
X = 10;
Y = 10;
Width = 60;
Height = 30;
SetImage(^.Image1);
}
ImageLabel ImageLabel2 {
X = 10;
Y = 40;
Width = 60;
Height = 30;
SetImage(^.Image1);
}
ImageLabel ImageLabel3 {
X = 10;
Y = 70;
Width = 60;
Height = 30;
SetImage(^.Image1);
}
|