[サンプルコード]
/*単一のイメージを取得したImage*/
Image Image1 {
LoadImage("1a.jpg");
}
/*配列化したImage*/
Image Image2[3] {
this[0].LoadImage("1b.jpg");
this[1].LoadImage("1c.jpg");
this[2].LoadImage("1d.jpg");
}
ImageButton ImageButton1 {
SetImage(^.image1);
}
ImageButton ImageButton2[3] {
/*配列の各要素を指定してイメージを表示させる*/
this[0].SetImage(^.image2[0]);
this[1].SetImage(^.image2[1]);
this[2].SetImage(^.image2[2]);
}
|